diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2014-11-27 23:40:19 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2014-11-27 23:40:19 +0000 |
commit | d12c35edfd44311ebd716c807ea9f72efa660337 (patch) | |
tree | 25bf441b641c3c291192faed5b50e573572513d4 /read.c | |
parent | e60121aa36205c920bf51da52a8b1ca357beb594 (diff) | |
download | mandoc-d12c35edfd44311ebd716c807ea9f72efa660337.tar.gz |
Downgrade .Bd -file from FATAL to ERROR.
Since this was the last remaining FATAL error in this area,
this change will allow major simplifications in the mdoc(7) parser.
Diffstat (limited to 'read.c')
-rw-r--r-- | read.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -202,6 +202,7 @@ static const char * const mandocerrs[MANDOCERR_MAX] = { /* related to request and macro arguments */ "escaped character not allowed in a name", "argument count wrong", + "NOT IMPLEMENTED: Bd -file", "missing list type, using -item", "missing manual name, using \"\"", "uname(3) system call failed, using UNKNOWN", @@ -214,7 +215,6 @@ static const char * const mandocerrs[MANDOCERR_MAX] = { "generic fatal error", "input too large", - "NOT IMPLEMENTED: Bd -file", "NOT IMPLEMENTED: .so with absolute path or \"..\"", ".so request failed", |