diff options
author | 2009-10-27 21:40:07 +0000 | |
---|---|---|
committer | 2009-10-27 21:40:07 +0000 | |
commit | b822ca0d77807d44eec5a00444afad079a24e43c (patch) | |
tree | 61739724919c5c74eb5ced4fd954890ec97056bc /usr.bin/mandoc/man_macro.c | |
parent | update moduli file; ok deraadt (diff) | |
download | wireguard-openbsd-b822ca0d77807d44eec5a00444afad079a24e43c.tar.xz wireguard-openbsd-b822ca0d77807d44eec5a00444afad079a24e43c.zip |
sync to 1.9.11: adapt printing of dates to groff conventions,
NetBSD portability fixes and some minor bugfixes and feature enhancements;
also checked that my hyphenation code still works on top of this
Diffstat (limited to 'usr.bin/mandoc/man_macro.c')
-rw-r--r-- | usr.bin/mandoc/man_macro.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/mandoc/man_macro.c b/usr.bin/mandoc/man_macro.c index 74fea4bc12c..d0e96db233f 100644 --- a/usr.bin/mandoc/man_macro.c +++ b/usr.bin/mandoc/man_macro.c @@ -1,4 +1,4 @@ -/* $Id: man_macro.c,v 1.8 2009/09/18 22:46:14 schwarze Exp $ */ +/* $Id: man_macro.c,v 1.9 2009/10/27 21:40:07 schwarze Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se> * @@ -67,6 +67,7 @@ const struct man_macro __man_macros[MAN_MAX] = { { blk_imp, MAN_EXPLICIT }, /* RS */ { in_line_eoln, 0 }, /* DT */ { in_line_eoln, 0 }, /* UC */ + { in_line_eoln, 0 }, /* PD */ }; const struct man_macro * const man_macros = __man_macros; |