Module Name:    src
Committed By:   christos
Date:           Wed Apr  3 01:05:16 UTC 2013

Modified Files:
        src/external/bsd/mdocml/dist: roff.c

Log Message:
Allow both x==y and x=y in conditionals. With this change the ksh93 manpage
works.


To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 src/external/bsd/mdocml/dist/roff.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/bsd/mdocml/dist/roff.c
diff -u src/external/bsd/mdocml/dist/roff.c:1.12 src/external/bsd/mdocml/dist/roff.c:1.13
--- src/external/bsd/mdocml/dist/roff.c:1.12	Tue Apr  2 21:00:03 2013
+++ src/external/bsd/mdocml/dist/roff.c	Tue Apr  2 21:05:16 2013
@@ -1095,6 +1095,8 @@ roff_getop(const char *v, int *pos)
 			return c;
 		}
 		switch (c) {
+		case '=':
+			return '=';
 		case '>':
 			return 'g';
 		case '<':

Reply via email to