changeset 3404:c4ba3cada9cb

[project @ 2000-01-05 06:45:00 by jwe]
author jwe
date Wed, 05 Jan 2000 06:45:01 +0000
parents 6f6dc7a86a99
children a020244950f9
files doc/ChangeLog doc/interpreter/Makefile.in doc/interpreter/munge-texi.cc
diffstat 3 files changed, 12 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/doc/ChangeLog	Wed Jan 05 06:11:14 2000 +0000
+++ b/doc/ChangeLog	Wed Jan 05 06:45:01 2000 +0000
@@ -1,3 +1,12 @@
+2000-01-05  John W. Eaton  <jwe@bevo.che.wisc.edu>
+
+	* interpreter/Makefile.in: Don't generate octave.texi from octave.txi.
+	* interpreter/octave.texi: Rename from octave.txi.
+
+	* interpreter/munge-texi.cc (process_texi_input_file): Undo
+	previous change, since % doesn't work as a comment character after
+	texinfo.tex is included.
+
 2000-01-04  John W. Eaton  <jwe@bevo.che.wisc.edu>
 
 	* texinfo.tex: Update to version from texinfo-4.0.
--- a/doc/interpreter/Makefile.in	Wed Jan 05 06:11:14 2000 +0000
+++ b/doc/interpreter/Makefile.in	Wed Jan 05 06:45:01 2000 +0000
@@ -18,8 +18,6 @@
 INSTALL_PROGRAM = @INSTALL_PROGRAM@
 INSTALL_DATA = @INSTALL_DATA@
 
-MAIN_SOURCE := octave.txi
-
 SUB_SOURCE := arith.txi audio.txi basics.txi bugs.txi control.txi \
 	cp-idx.txi data.txi diffeq.txi emacs.txi errors.txi \
 	eval.txi expr.txi fn-idx.txi func.txi gpl.txi \
@@ -30,9 +28,9 @@
 	strings.txi struct.txi system.txi tips.txi var.txi \
 	vr-idx.txi
 
-SOURCES := $(MAIN_SOURCE) $(SUB_SOURCE)
+SOURCES := $(SUB_SOURCE)
 
-MAIN_TEXINFO := $(MAIN_SOURCE:.txi=.texi)
+MAIN_TEXINFO := octave.texi
 
 SUB_TEXINFO := $(SUB_SOURCE:.txi=.texi)
 
--- a/doc/interpreter/munge-texi.cc	Wed Jan 05 06:11:14 2000 +0000
+++ b/doc/interpreter/munge-texi.cc	Wed Jan 05 06:45:01 2000 +0000
@@ -106,7 +106,7 @@
 static void
 process_texi_input_file (istream& is, ostream& os)
 {
-  os << "% DO NOT EDIT!  Generated automatically by munge-texi.\n\n";
+  os << "@c DO NOT EDIT!  Generated automatically by munge-texi.\n\n";
 
   bool bol = true;