diff options
author | 2010-11-29 02:26:45 +0000 | |
---|---|---|
committer | 2010-11-29 02:26:45 +0000 | |
commit | 67a859d656ca5c1c8f2f3c8fa392a33d9c008a86 (patch) | |
tree | 14880bf9307ac8a51d080add3fd42c3471434db9 /usr.bin/mandoc/man_macro.c | |
parent | Downgrade the easier of the two cases of MANDOCERR_SYNTLINESCOPE (diff) | |
download | wireguard-openbsd-67a859d656ca5c1c8f2f3c8fa392a33d9c008a86.tar.xz wireguard-openbsd-67a859d656ca5c1c8f2f3c8fa392a33d9c008a86.zip |
Now that we have proper .de support in the roff(7) library,
it is time to remove the .Sp, .Vb, and .Ve kludge
that was added to the man(7) library to build Perl manuals.
Diffstat (limited to 'usr.bin/mandoc/man_macro.c')
-rw-r--r-- | usr.bin/mandoc/man_macro.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/usr.bin/mandoc/man_macro.c b/usr.bin/mandoc/man_macro.c index e1a1c752ee2..f226db507b3 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.22 2010/11/29 00:12:02 schwarze Exp $ */ +/* $Id: man_macro.c,v 1.23 2010/11/29 02:26:45 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv> * @@ -75,9 +75,6 @@ const struct man_macro __man_macros[MAN_MAX] = { { in_line_eoln, 0 }, /* DT */ { in_line_eoln, 0 }, /* UC */ { in_line_eoln, 0 }, /* PD */ - { in_line_eoln, MAN_NSCOPED }, /* Sp */ - { in_line_eoln, 0 }, /* Vb */ - { in_line_eoln, 0 }, /* Ve */ { in_line_eoln, 0 }, /* AT */ { in_line_eoln, 0 }, /* in */ { blk_exp, MAN_EXPLICIT }, /* TS */ |