diff options
author | 2009-08-22 15:15:37 +0000 | |
---|---|---|
committer | 2009-08-22 15:15:37 +0000 | |
commit | 8dc37b1c407b025ab85a79081555c8d883f03cc9 (patch) | |
tree | 880e69e398d187bb14ce7b9690fcd6b4a07287e2 /usr.bin/mandoc/man_macro.c | |
parent | sync to 1.8.4: add option -fign-errors to check several manual pages (diff) | |
download | wireguard-openbsd-8dc37b1c407b025ab85a79081555c8d883f03cc9.tar.xz wireguard-openbsd-8dc37b1c407b025ab85a79081555c8d883f03cc9.zip |
sync to 1.8.4: support .sp in -man
Diffstat (limited to 'usr.bin/mandoc/man_macro.c')
-rw-r--r-- | usr.bin/mandoc/man_macro.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/mandoc/man_macro.c b/usr.bin/mandoc/man_macro.c index 2b15e16bf7b..ae292d3213a 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.4 2009/06/23 22:05:42 schwarze Exp $ */ +/* $Id: man_macro.c,v 1.5 2009/08/22 15:15:37 schwarze Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se> * @@ -51,6 +51,7 @@ static int man_flags[MAN_MAX] = { FL_NLINE, /* RI */ 0, /* na */ FL_NLINE, /* i */ + 0, /* sp */ }; int |