diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2010-07-01 15:37:00 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2010-07-01 15:37:00 +0000 |
commit | f493f0926a306b8c080500d57168d36f304aedba (patch) | |
tree | 20ead7e44f8a1947654fa6420c2bea13394efbff /usr.bin/mandoc/main.c | |
parent | 6205336faf2316e657dd16af846cba2cdc9bffe7 (diff) |
Improve .Nm indentation in the SYNOPSIS;
kristaps@ will do the missing HTML part soon.
"looks nicer" jmc@
"seems perfect to me" sobrado@
"slap it in" kristaps@
Diffstat (limited to 'usr.bin/mandoc/main.c')
-rw-r--r-- | usr.bin/mandoc/main.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/usr.bin/mandoc/main.c b/usr.bin/mandoc/main.c index 9b336a6e4db..d676aa49007 100644 --- a/usr.bin/mandoc/main.c +++ b/usr.bin/mandoc/main.c @@ -1,4 +1,4 @@ -/* $Id: main.c,v 1.40 2010/06/30 20:29:44 schwarze Exp $ */ +/* $Id: main.c,v 1.41 2010/07/01 15:36:59 schwarze Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@bsd.lv> * @@ -109,6 +109,7 @@ static const char * const mandocerrs[MANDOCERR_MAX] = { "unknown manual section", "section not in conventional manual section", "end of line whitespace", + "blocks badly nested", "scope open on exit", "generic error", @@ -132,7 +133,6 @@ static const char * const mandocerrs[MANDOCERR_MAX] = { "bad comment style", "unknown macro will be lost", "line scope broken", - "scope broken", "argument count wrong", "request scope close w/none open", "scope already open", @@ -151,7 +151,8 @@ static const char * const mandocerrs[MANDOCERR_MAX] = { "missing font type", "displays may not be nested", "unsupported display type", - "no scope to rewind: syntax violated", + "blocks badly nested", + "no such block is open", "scope broken, syntax violated", "line scope broken, syntax violated", "argument count wrong, violates syntax", |