# HG changeset patch # User jwe # Date 940328595 0 # Node ID 7d60704b2cbe2ffd9250da21c21379d13594cf36 # Parent 35a6d027772c9d49163169a93b21a54fb9eb13e0 [project @ 1999-10-19 10:23:04 by jwe] diff --git a/doc/ChangeLog b/doc/ChangeLog --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,3 +1,10 @@ +1999-10-19 John W. Eaton + + * interpreter/*.txi: Rename from *.txi. + * interpreter/munge-texi.cc: New file. + * interpreter/Makefile.in: Use it to create .texi files from .txi + files and DOCSTRING files. + Fri Jun 18 23:17:02 1999 John W. Eaton * interpreter/Makefile.in (octave_toc.html): Add -expandinfo to diff --git a/scripts/ChangeLog b/scripts/ChangeLog --- a/scripts/ChangeLog +++ b/scripts/ChangeLog @@ -1,3 +1,9 @@ +1999-10-19 John W. Eaton + + * gethelp.cc, mkdoc: New files. + * Makefile.in: Use them to create DOCSTRINGS file from .m file + sources. + 1999-10-14 John W. Eaton * linear-algebra/kron.m: Fix typo in previous change diff --git a/src/ChangeLog b/src/ChangeLog --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,14 @@ +1999-10-19 John W. Eaton + + * help.cc (looks_like_texinfo): New function. + (display_help_text): Use it to see if the doc string looks like + Texinfo source. If so, use makeinfo to format the text before + displaying it. + + * mkgendoc: New script. + * Makefile.in: Use it to create gendoc.cc, which is compiled and + run to create DOCSTRINGS file from sources. + 1999-10-18 John W. Eaton * help.cc (help_from_info): Print `unable to find info' message if diff --git a/src/help.cc b/src/help.cc --- a/src/help.cc +++ b/src/help.cc @@ -706,7 +706,7 @@ ostrstream buf; buf << "sed 's/^[#%]+ *//'" << " | makeinfo --fill-column " << cols - << " --no-warn --no-validate --no-headers --force > " + << " --no-warn --no-validate --no-headers --force --output " << tmp_file_name << ends;