diff options
author | Roland Pesch <pesch@cygnus> | 1992-06-02 00:50:41 +0000 |
---|---|---|
committer | Roland Pesch <pesch@cygnus> | 1992-06-02 00:50:41 +0000 |
commit | 50a39795e21751fccaf75cf4e9df1378e5fcba62 (patch) | |
tree | 7df7d093b5b3e5435072f0764468554713715358 /gdb/doc/Makefile.in | |
parent | 45c53080cc73c375ff52c387a4f140437275579d (diff) | |
download | gdb-50a39795e21751fccaf75cf4e9df1378e5fcba62.zip gdb-50a39795e21751fccaf75cf4e9df1378e5fcba62.tar.gz gdb-50a39795e21751fccaf75cf4e9df1378e5fcba62.tar.bz2 |
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.
Diffstat (limited to 'gdb/doc/Makefile.in')
-rw-r--r-- | gdb/doc/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/doc/Makefile.in b/gdb/doc/Makefile.in index 247c25d..da02fec 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' \ |