# HG changeset patch # User John W. Eaton # Date 1236443731 18000 # Node ID d47290508a55b42365205ce808110860e6396acf # Parent 25b85c36208ff7a6523f35bf70f015a68d3835c2 document --doc-cache-file option diff -r 25b85c36208f -r d47290508a55 doc/ChangeLog --- a/doc/ChangeLog Sat Mar 07 11:29:07 2009 -0500 +++ b/doc/ChangeLog Sat Mar 07 11:35:31 2009 -0500 @@ -1,3 +1,8 @@ +2009-03-07 John W. Eaton + + * interpreter/basics.txi (Command Line Options): + Document --doc-cache-file command-line option. + 2009-03-06 Jaroslav Hajek * interpreter/diagperm.txi: Various improvements. diff -r 25b85c36208f -r d47290508a55 doc/interpreter/basics.txi --- a/doc/interpreter/basics.txi Sat Mar 07 11:29:07 2009 -0500 +++ b/doc/interpreter/basics.txi Sat Mar 07 11:35:31 2009 -0500 @@ -76,6 +76,14 @@ parser to print a lot of information about the commands it reads, and is probably only useful if you are actually trying to debug the parser. +@item --doc-cache-file +@cindex @code{--doc-cache-file} @var{filename} +Specify the name of the doc cache file to use. The value of @var{filename} +specified on the command line will override any value of +@code{OCTAVE_DOC_CACHE_FILE} found in the environment, but not any commands +in the system or user startup files that use the @code{doc_file_cache} +function. + @item --echo-commands @itemx -x @cindex @code{--echo-commands} diff -r 25b85c36208f -r d47290508a55 src/ChangeLog --- a/src/ChangeLog Sat Mar 07 11:29:07 2009 -0500 +++ b/src/ChangeLog Sat Mar 07 11:35:31 2009 -0500 @@ -1,3 +1,7 @@ +2009-03-07 John W. Eaton + + * octave.cc (verbose_usage): Include --doc-cache-file in option list. + 2009-03-06 Jaroslav Hajek * ov.h (octave_value::diag_matrix_value, diff -r 25b85c36208f -r d47290508a55 src/octave.cc --- a/src/octave.cc Sat Mar 07 11:29:07 2009 -0500 +++ b/src/octave.cc Sat Mar 07 11:35:31 2009 -0500 @@ -487,6 +487,7 @@ Options:\n\ \n\ --debug, -d Enter parser debugging mode.\n\ + --doc-cache-file FILE Use doc cache file FILE.\n\ --echo-commands, -x Echo commands as they are executed.\n\ --eval CODE Evaluate CODE. Exit when done unless --persist.\n\ --exec-path PATH Set path for executing subprograms.\n\