# HG changeset patch # User jwe # Date 944726919 0 # Node ID 6c6cec6d4252b4ccfc494dd90f70d5a1f99b91d9 # Parent 1cdb3ab4180a6a3a1f5bf42263b3694f3fdaf576 [project @ 1999-12-09 08:08:38 by jwe] diff -r 1cdb3ab4180a -r 6c6cec6d4252 doc/ChangeLog --- 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 + + * 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 * interpreter/Makefile.in (%.texi : %.txi): Suppress command echo. diff -r 1cdb3ab4180a -r 6c6cec6d4252 doc/interpreter/munge-texi.cc --- 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;