summaryrefslogtreecommitdiff
path: root/usr.bin/mandoc/man_macro.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@cvs.openbsd.org>2009-09-18 22:46:15 +0000
committerIngo Schwarze <schwarze@cvs.openbsd.org>2009-09-18 22:46:15 +0000
commit65683754a87e5ab2dde058e0dd5851c698cb08ea (patch)
tree090da979039a9c47cdc674e61407f0b27a5e510a /usr.bin/mandoc/man_macro.c
parent462ddba1bb3270d77e22684c8f0faf51a741be46 (diff)
sync to 1.9.2: Add .UC libman macro for compatibility, has no effect.
Correct .UC and .DT to not print their arguments. Document that .UC and .DT should not be used.
Diffstat (limited to 'usr.bin/mandoc/man_macro.c')
-rw-r--r--usr.bin/mandoc/man_macro.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/mandoc/man_macro.c b/usr.bin/mandoc/man_macro.c
index 1bdc4c2563a..74fea4bc12c 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.7 2009/08/22 23:17:40 schwarze Exp $ */
+/* $Id: man_macro.c,v 1.8 2009/09/18 22:46:14 schwarze Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -66,6 +66,7 @@ const struct man_macro __man_macros[MAN_MAX] = {
{ blk_close, 0 }, /* RE */
{ blk_imp, MAN_EXPLICIT }, /* RS */
{ in_line_eoln, 0 }, /* DT */
+ { in_line_eoln, 0 }, /* UC */
};
const struct man_macro * const man_macros = __man_macros;