diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2011-05-29 21:32:43 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2011-05-29 21:32:43 +0000 |
commit | 9d9e910826711b47c7b14064612f5957e8598854 (patch) | |
tree | 618d10a581211bf8b792f002c9998506f8ebfa25 /usr.bin/mandoc/predefs.in | |
parent | 3b95b38c34ae4996a9bfc6052ed2df6661aa9c5b (diff) |
Fix more regressions introduced in 1.11.3:
Some predefined strings got changed in -Tascii mode.
With this fix, they change in other output modes, but -Tascii is what matters.
Diffstat (limited to 'usr.bin/mandoc/predefs.in')
-rw-r--r-- | usr.bin/mandoc/predefs.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/mandoc/predefs.in b/usr.bin/mandoc/predefs.in index 6713bff1976..0e03713680f 100644 --- a/usr.bin/mandoc/predefs.in +++ b/usr.bin/mandoc/predefs.in @@ -1,4 +1,4 @@ -/* $Id: predefs.in,v 1.1 2011/05/29 21:22:18 schwarze Exp $ */ +/* $Id: predefs.in,v 1.2 2011/05/29 21:32:42 schwarze Exp $ */ /* * Copyright (c) 2011 Kristaps Dzonsons <kristaps@bsd.lv> * @@ -29,13 +29,13 @@ PREDEF("Am", "&") PREDEF("Ba", "|") PREDEF("Ge", "\\(>=") PREDEF("Gt", ">") -PREDEF("If", "\\(if") +PREDEF("If", "infinity") PREDEF("Le", "\\(<=") PREDEF("Lq", "\\(lq") PREDEF("Lt", "<") PREDEF("Na", "NaN") PREDEF("Ne", "\\(!=") -PREDEF("Pi", "\\(*p") +PREDEF("Pi", "pi") PREDEF("Pm", "\\(+-") PREDEF("Rq", "\\(rq") PREDEF("left-bracket", "[") @@ -50,7 +50,7 @@ PREDEF("right-bracket", "]") PREDEF("right-parenthesis", ")") PREDEF("rp", ")") PREDEF("right-singlequote", "\\(cq") -PREDEF("Tm", "\\(tm") +PREDEF("Tm", "(Tm)") PREDEF("Px", "POSIX") PREDEF("Ai", "ANSI") PREDEF("\'", "\\\'") |