From: Roland Pesch Date: Tue, 2 Jun 1992 00:50:41 +0000 (+0000) Subject: Fix from net: when predigesting doc for texi2roff, search for "@c " at X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=50a39795e21751fccaf75cf4e9df1378e5fcba62;p=binutils-gdb.git Fix from net: when predigesting doc for texi2roff, search for "@c " at the beginning of a line, rather than just "@C" at the beginning of a line, to identify (and remove) comments. --- diff --git a/gdb/doc/Makefile.in b/gdb/doc/Makefile.in index 247c25d6218..da02fecd72b 100644 --- a/gdb/doc/Makefile.in +++ b/gdb/doc/Makefile.in @@ -228,7 +228,7 @@ gdb.mm: gdb-${CONFIG}.texi ${READLINE_DIR}/doc/rluser.texinfo inc-hist.texi sed -e '/\\input texinfo/d' \ -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \ -e '/^@ifinfo/,/^@end ifinfo/d' \ - -e '/^@c/d' \ + -e '/^@c /d' \ -e 's/{.*,,/{/' \ -e '/@noindent/d' \ -e 's/@ / /g' \ @@ -249,7 +249,7 @@ gdb.me: gdb-${CONFIG}.texi ${READLINE_DIR}/doc/rluser.texinfo inc-hist.texi sed -e '/\\input texinfo/d' \ -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \ -e '/^@ifinfo/,/^@end ifinfo/d' \ - -e '/^@c/d' \ + -e '/^@c /d' \ -e 's/{.*,,/{/' \ -e 's/@ / /g' \ -e 's/^@alphaenumerate/@enumerate/g' \ @@ -269,7 +269,7 @@ gdb.ms: gdb-${CONFIG}.texi ${READLINE_DIR}/doc/rluser.texinfo inc-hist.texi sed -e '/\\input texinfo/d' \ -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \ -e '/^@ifinfo/,/^@end ifinfo/d' \ - -e '/^@c/d' \ + -e '/^@c /d' \ -e 's/{.*,,/{/' \ -e 's/@ / /g' \ -e 's/^@alphaenumerate/@enumerate/g' \