diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2009-07-26 01:59:47 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2009-07-26 01:59:47 +0000 |
commit | ea862ffebd1b3edfb0e63ade6580ea8f38df877a (patch) | |
tree | 7c8984e4c63b3ead0945ba4e750483902b05bd99 /usr.bin/mandoc/mdoc_action.c | |
parent | 08c20f5e2689ab51349ed5b046559e68ce57f37f (diff) |
sync to 1.8.1: support .br and .sp
Diffstat (limited to 'usr.bin/mandoc/mdoc_action.c')
-rw-r--r-- | usr.bin/mandoc/mdoc_action.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/mandoc/mdoc_action.c b/usr.bin/mandoc/mdoc_action.c index 08c392e69fc..8ea01b3300e 100644 --- a/usr.bin/mandoc/mdoc_action.c +++ b/usr.bin/mandoc/mdoc_action.c @@ -1,4 +1,4 @@ -/* $Id: mdoc_action.c,v 1.15 2009/07/18 19:44:38 schwarze Exp $ */ +/* $Id: mdoc_action.c,v 1.16 2009/07/26 01:59:46 schwarze Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se> * @@ -172,6 +172,8 @@ const struct actions mdoc_actions[MDOC_MAX] = { { NULL, NULL }, /* En */ { NULL, NULL }, /* Dx */ { NULL, NULL }, /* %Q */ + { NULL, NULL }, /* br */ + { NULL, NULL }, /* sp */ }; static int concat(struct mdoc *, const struct mdoc_node *, |