diff options
author | 2009-06-18 01:19:02 +0000 | |
---|---|---|
committer | 2009-06-18 01:19:02 +0000 | |
commit | 840c7af14a2502b7bf549e8f689f771d6f99a76a (patch) | |
tree | 0e4fdabb0e1d8cfe3105a8f1bd94da83f9db1f5c /usr.bin/mandoc/mdoc_strings.c | |
parent | sync to 1.7.16: rename static function printwarn to warn_print (diff) | |
download | wireguard-openbsd-840c7af14a2502b7bf549e8f689f771d6f99a76a.tar.xz wireguard-openbsd-840c7af14a2502b7bf549e8f689f771d6f99a76a.zip |
sync to 1.7.16: make a couple of macros callable, reserve "|",
and some tweaks to .Lk
Diffstat (limited to 'usr.bin/mandoc/mdoc_strings.c')
-rw-r--r-- | usr.bin/mandoc/mdoc_strings.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/mandoc/mdoc_strings.c b/usr.bin/mandoc/mdoc_strings.c index 8efb68018cf..930e48a1831 100644 --- a/usr.bin/mandoc/mdoc_strings.c +++ b/usr.bin/mandoc/mdoc_strings.c @@ -1,4 +1,4 @@ -/* $Id: mdoc_strings.c,v 1.4 2009/06/15 03:42:51 schwarze Exp $ */ +/* $Id: mdoc_strings.c,v 1.5 2009/06/18 01:19:02 schwarze Exp $ */ /* * Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se> * @@ -143,6 +143,8 @@ mdoc_iscdelim(char p) { switch (p) { + case('|'): + /* FALLTHROUGH */ case('.'): /* FALLTHROUGH */ case(','): |