]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
Fix from net: when predigesting doc for texi2roff, search for "@c " at
authorRoland Pesch <pesch@cygnus>
Tue, 2 Jun 1992 00:50:41 +0000 (00:50 +0000)
committerRoland Pesch <pesch@cygnus>
Tue, 2 Jun 1992 00:50:41 +0000 (00:50 +0000)
the beginning of a line, rather than just "@C" at the beginning of a
line, to identify (and remove) comments.

gdb/doc/Makefile.in

index 247c25d6218013e0fc0f91f10bc0bd6481f5203b..da02fecd72b7d6ffc86d7422f21a7302b48b425a 100644 (file)
@@ -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' \