groff-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Groff-commit] groff/contrib/groffer/shell groffer.man


From: Eric S. Raymond
Subject: [Groff-commit] groff/contrib/groffer/shell groffer.man
Date: Thu, 15 Feb 2007 18:35:36 +0000

CVSROOT:        /sources/groff
Module name:    groff
Changes by:     Eric S. Raymond <esr>   07/02/15 18:35:36

Modified files:
        contrib/groffer/shell: groffer.man 

Log message:
        Fix non-portable if expressions.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/groff/contrib/groffer/shell/groffer.man?cvsroot=groff&r1=1.7&r2=1.8

Patches:
Index: groffer.man
===================================================================
RCS file: /sources/groff/groff/contrib/groffer/shell/groffer.man,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -b -r1.7 -r1.8
--- groffer.man 15 Feb 2007 18:24:59 -0000      1.7
+++ groffer.man 15 Feb 2007 18:35:36 -0000      1.8
@@ -142,7 +142,7 @@
 .\" Treat the arguments as text, no matter how they look.
 .\"
 .de Text
-.  if (\\n[.$] == 0) \
+.  if \\n[.$]=0 \
 .    return
 .  nh
 .  nop \)\\$*\)
@@ -154,7 +154,7 @@
 .\" A bulleted paragraph
 .\"
 .de Topic
-.  ie (\\n[.$] = 0) \
+.  ie \\n[.$]=0 \
 .    ds @indent 2m\"
 .  el \
 .    ds @indent \\$1\"




reply via email to

[Prev in Thread] Current Thread [Next in Thread]