=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mandoc/man_macro.c,v retrieving revision 1.20 retrieving revision 1.21 diff -c -r1.20 -r1.21 *** src/usr.bin/mandoc/man_macro.c 2010/07/25 18:05:54 1.20 --- src/usr.bin/mandoc/man_macro.c 2010/10/15 20:45:03 1.21 *************** *** 1,4 **** ! /* $Id: man_macro.c,v 1.20 2010/07/25 18:05:54 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons * --- 1,4 ---- ! /* $Id: man_macro.c,v 1.21 2010/10/15 20:45:03 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons * *************** *** 80,85 **** --- 80,87 ---- { in_line_eoln, 0 }, /* Ve */ { in_line_eoln, 0 }, /* AT */ { in_line_eoln, 0 }, /* in */ + { blk_exp, MAN_EXPLICIT }, /* TS */ + { blk_close, 0 }, /* TE */ }; const struct man_macro * const man_macros = __man_macros; *************** *** 264,269 **** --- 266,274 ---- switch (tok) { case (MAN_RE): ntok = MAN_RS; + break; + case (MAN_TE): + ntok = MAN_TS; break; default: abort();