diff options
author | 2011-01-04 22:28:17 +0000 | |
---|---|---|
committer | 2011-01-04 22:28:17 +0000 | |
commit | 2791bd1c99baed97baf79feee97899256995b5a6 (patch) | |
tree | 50f04f74700b9a5b5602a363f3872a3788017c6e /usr.bin/mandoc/man_macro.c | |
parent | Add support for Memory Mapped Configuration space access. This gives us (diff) | |
download | wireguard-openbsd-2791bd1c99baed97baf79feee97899256995b5a6.tar.xz wireguard-openbsd-2791bd1c99baed97baf79feee97899256995b5a6.zip |
Merge kristaps@' cleaner tbl integration, removing mine;
there are still a few bugs, but fixing these will be easier in tree.
Diffstat (limited to 'usr.bin/mandoc/man_macro.c')
-rw-r--r-- | usr.bin/mandoc/man_macro.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/usr.bin/mandoc/man_macro.c b/usr.bin/mandoc/man_macro.c index cb467dd6f2c..a30b585b91a 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.25 2010/12/19 07:53:12 schwarze Exp $ */ +/* $Id: man_macro.c,v 1.26 2011/01/04 22:28:17 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv> * @@ -75,8 +75,6 @@ const struct man_macro __man_macros[MAN_MAX] = { { in_line_eoln, 0 }, /* PD */ { in_line_eoln, 0 }, /* AT */ { in_line_eoln, 0 }, /* in */ - { blk_exp, MAN_EXPLICIT }, /* TS */ - { blk_close, 0 }, /* TE */ { in_line_eoln, 0 }, /* ft */ }; @@ -259,9 +257,6 @@ blk_close(MACRO_PROT_ARGS) case (MAN_RE): ntok = MAN_RS; break; - case (MAN_TE): - ntok = MAN_TS; - break; default: abort(); /* NOTREACHED */ |