[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
buglet in oob
There is a buglet in Browser.Mod: at the end in the module init code
it says:
BEGIN
extendedFormat := Options.CreateBoolean ("browse_extended", FALSE);
Options.options. Add (extendedFormat);
Options.options. CmdLineOption ("-x,--extended", "browse_extended=true")
END Browser.
and it should be
BEGIN
extendedFormat := Options.CreateBoolean ("browseExtended", FALSE);
Options.options. Add (extendedFormat);
Options.options. CmdLineOption ("-x,--extended", "browseExtended:=TRUE")
END Browser.
--
Sander
We get to pick tools and equipment that suit the job. We spend nearly all our
time programming ART's computer's. (~P.J.Plauger: Programming on Purpose III)