# HG changeset patch # User Rik # Date 1336694930 25200 # Node ID 36f451642f79c5239a03d53cae89d227f607eb56 # Parent 8ffb01c3a27a4383a264239edeb9813c6ad5cccf doc: Add texi_macros_file to manual. * basics.txi: Add function to manual. * aspell-octave.en.pws: Add 'makeinfo' to Octave dictionary. * help.cc (makeinfo_program, texi_macros_file): Improve doctrings. diff -r 8ffb01c3a27a -r 36f451642f79 doc/interpreter/basics.txi --- a/doc/interpreter/basics.txi Thu May 10 16:58:41 2012 -0700 +++ b/doc/interpreter/basics.txi Thu May 10 17:08:50 2012 -0700 @@ -389,6 +389,8 @@ @DOCSTRING(makeinfo_program) +@DOCSTRING(texi_macros_file) + @DOCSTRING(doc_cache_file) @DOCSTRING(suppress_verbose_help_message) diff -r 8ffb01c3a27a -r 36f451642f79 doc/interpreter/doccheck/aspell-octave.en.pws --- a/doc/interpreter/doccheck/aspell-octave.en.pws Thu May 10 16:58:41 2012 -0700 +++ b/doc/interpreter/doccheck/aspell-octave.en.pws Thu May 10 17:08:50 2012 -0700 @@ -534,6 +534,7 @@ Mahalanobis makefile makefiles +makeinfo Mandriva MANOVA manova diff -r 8ffb01c3a27a -r 36f451642f79 src/help.cc --- a/src/help.cc Thu May 10 16:58:41 2012 -0700 +++ b/src/help.cc Thu May 10 17:08:50 2012 -0700 @@ -1302,7 +1302,7 @@ @deftypefnx {Built-in Function} {@var{old_val} =} texi_macros_file (@var{new_val})\n\ @deftypefnx {Built-in Function} {} texi_macros_file (@var{new_val}, \"local\")\n\ Query or set the internal variable that specifies the name of the\n\ -file containing Texinfo macros that are prepended to doc strings\n\ +file containing Texinfo macros that are prepended to documentation strings\n\ before they are passed to makeinfo. The default value is \n\ @file{@var{octave-home}/share/octave/@var{version}/etc/macros.texi},\n\ in which @var{octave-home} is the root directory of the Octave installation,\n\ @@ -1314,7 +1314,7 @@ When called from inside a function with the \"local\" option, the variable is\n\ changed locally for the function and any subroutines it calls. The original\n\ variable value is restored when exiting the function.\n\ -@seealso{lookfor, info_program, doc, help, makeinfo_program}\n\ +@seealso{makeinfo_program}\n\ @end deftypefn") { return SET_NONEMPTY_INTERNAL_STRING_VARIABLE (texi_macros_file); @@ -1378,7 +1378,7 @@ When called from inside a function with the \"local\" option, the variable is\n\ changed locally for the function and any subroutines it calls. The original\n\ variable value is restored when exiting the function.\n\ -@seealso{info_file, info_program, doc, help}\n\ +@seealso{texi_macros_file, info_file, info_program, doc, help}\n\ @end deftypefn") { return SET_NONEMPTY_INTERNAL_STRING_VARIABLE (makeinfo_program);