changeset 3376:6c6cec6d4252

[project @ 1999-12-09 08:08:38 by jwe]
author jwe
date Thu, 09 Dec 1999 08:08:39 +0000
parents 1cdb3ab4180a
children c4309e154d0e
files doc/ChangeLog doc/interpreter/munge-texi.cc
diffstat 2 files changed, 8 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/doc/ChangeLog	Thu Dec 09 04:58:35 1999 +0000
+++ b/doc/ChangeLog	Thu Dec 09 08:08:39 1999 +0000
@@ -1,3 +1,10 @@
+1999-12-09  John W. Eaton  <jwe@bevo.che.wisc.edu>
+
+	* interpreter/munge-texi.cc (process_texi_input_file): Begin
+	transformed files with `% DO NOT EDIT' instead of `@c DO NOT EDIT'
+	to prevent problems with TeX not knowing the definition of @c
+	before it is used.
+
 1999-11-19  John W. Eaton  <jwe@bevo.che.wisc.edu>
 
 	* interpreter/Makefile.in (%.texi : %.txi): Suppress command echo.
--- a/doc/interpreter/munge-texi.cc	Thu Dec 09 04:58:35 1999 +0000
+++ b/doc/interpreter/munge-texi.cc	Thu Dec 09 08:08:39 1999 +0000
@@ -106,7 +106,7 @@
 static void
 process_texi_input_file (istream& is, ostream& os)
 {
-  os << "@c DO NOT EDIT!  Generated automatically by munge-texi.\n\n";
+  os << "% DO NOT EDIT!  Generated automatically by munge-texi.\n\n";
 
   bool bol = true;