diff options
author | 2009-06-18 23:34:53 +0000 | |
---|---|---|
committer | 2009-06-18 23:34:53 +0000 | |
commit | 099cfa7e56e57812e6eec3b42c30adf7903a66f2 (patch) | |
tree | ab3dd27c51fcc6d44f5eff6cea11949767029bf7 /usr.bin/mandoc/man_macro.c | |
parent | fix previous: start playback when at least one block of data has (diff) | |
download | wireguard-openbsd-099cfa7e56e57812e6eec3b42c30adf7903a66f2.tar.xz wireguard-openbsd-099cfa7e56e57812e6eec3b42c30adf7903a66f2.zip |
sync to 1.7.19: improved comment handling
Diffstat (limited to 'usr.bin/mandoc/man_macro.c')
-rw-r--r-- | usr.bin/mandoc/man_macro.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.bin/mandoc/man_macro.c b/usr.bin/mandoc/man_macro.c index 4c283ab94f2..2f342331aee 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.2 2009/06/14 23:00:57 schwarze Exp $ */ +/* $Id: man_macro.c,v 1.3 2009/06/18 23:34:53 schwarze Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se> * @@ -28,7 +28,7 @@ static int man_args(struct man *, int, int *, char *, char **); static int man_flags[MAN_MAX] = { - 0, /* __ */ + 0, /* br */ 0, /* TH */ 0, /* SH */ 0, /* SS */ @@ -49,7 +49,6 @@ static int man_flags[MAN_MAX] = { FL_NLINE, /* I */ FL_NLINE, /* IR */ FL_NLINE, /* RI */ - 0, /* br */ 0, /* na */ FL_NLINE, /* i */ }; |