version 1.171, 2017/06/06 15:01:04 |
version 1.184, 2017/07/01 09:47:30 |
|
|
const char *file; /* filename of current input file */ |
const char *file; /* filename of current input file */ |
struct buf *primary; /* buffer currently being parsed */ |
struct buf *primary; /* buffer currently being parsed */ |
struct buf *secondary; /* preprocessed copy of input */ |
struct buf *secondary; /* preprocessed copy of input */ |
const char *defos; /* default operating system */ |
const char *os_s; /* default operating system */ |
mandocmsg mmsg; /* warning/error message handler */ |
mandocmsg mmsg; /* warning/error message handler */ |
enum mandoclevel file_status; /* status of current parse */ |
enum mandoclevel file_status; /* status of current parse */ |
enum mandoclevel wlevel; /* ignore messages below this */ |
enum mandocerr mmin; /* ignore messages below this */ |
int options; /* parser options */ |
int options; /* parser options */ |
int gzip; /* current input file is gzipped */ |
int gzip; /* current input file is gzipped */ |
int filenc; /* encoding of the current file */ |
int filenc; /* encoding of the current file */ |
Line 86 static const enum mandocerr mandoclimits[MANDOCLEVEL_M |
|
Line 86 static const enum mandocerr mandoclimits[MANDOCLEVEL_M |
|
static const char * const mandocerrs[MANDOCERR_MAX] = { |
static const char * const mandocerrs[MANDOCERR_MAX] = { |
"ok", |
"ok", |
|
|
|
"base system convention", |
|
|
|
"Mdocdate found", |
|
"Mdocdate missing", |
|
"unknown architecture", |
|
"operating system explicitly specified", |
|
"RCS id missing", |
|
"referenced manual not found", |
|
|
"generic style suggestion", |
"generic style suggestion", |
|
|
|
"legacy man(7) date format", |
|
"duplicate RCS id", |
|
"typo in section name", |
"useless macro", |
"useless macro", |
"consider using OS macro", |
"consider using OS macro", |
|
"errnos out of order", |
|
"duplicate errno", |
"description line ends with a full stop", |
"description line ends with a full stop", |
|
"no blank before trailing delimiter", |
|
"function name without markup", |
|
|
"generic warning", |
"generic warning", |
|
|
Line 136 static const char * const mandocerrs[MANDOCERR_MAX] = |
|
Line 152 static const char * const mandocerrs[MANDOCERR_MAX] = |
|
"blocks badly nested", |
"blocks badly nested", |
"nested displays are not portable", |
"nested displays are not portable", |
"moving content out of list", |
"moving content out of list", |
|
"first macro on line", |
"fill mode already enabled, skipping", |
"fill mode already enabled, skipping", |
"fill mode already disabled, skipping", |
"fill mode already disabled, skipping", |
"line scope broken", |
"line scope broken", |
Line 154 static const char * const mandocerrs[MANDOCERR_MAX] = |
|
Line 171 static const char * const mandocerrs[MANDOCERR_MAX] = |
|
"missing function name, using \"\"", |
"missing function name, using \"\"", |
"empty head in list item", |
"empty head in list item", |
"empty list item", |
"empty list item", |
|
"missing argument, using next line", |
"missing font type, using \\fR", |
"missing font type, using \\fR", |
"unknown font type, using \\fR", |
"unknown font type, using \\fR", |
"nothing follows prefix", |
"nothing follows prefix", |
Line 175 static const char * const mandocerrs[MANDOCERR_MAX] = |
|
Line 193 static const char * const mandocerrs[MANDOCERR_MAX] = |
|
"unknown AT&T UNIX version", |
"unknown AT&T UNIX version", |
"comma in function argument", |
"comma in function argument", |
"parenthesis in function name", |
"parenthesis in function name", |
|
"unknown library name", |
"invalid content in Rs block", |
"invalid content in Rs block", |
"invalid Boolean argument", |
"invalid Boolean argument", |
"unknown font, skipping request", |
"unknown font, skipping request", |
Line 745 mparse_open(struct mparse *curp, const char *file) |
|
Line 764 mparse_open(struct mparse *curp, const char *file) |
|
} |
} |
|
|
struct mparse * |
struct mparse * |
mparse_alloc(int options, enum mandoclevel wlevel, mandocmsg mmsg, |
mparse_alloc(int options, enum mandocerr mmin, mandocmsg mmsg, |
const char *defos) |
enum mandoc_os os_e, const char *os_s) |
{ |
{ |
struct mparse *curp; |
struct mparse *curp; |
|
|
curp = mandoc_calloc(1, sizeof(struct mparse)); |
curp = mandoc_calloc(1, sizeof(struct mparse)); |
|
|
curp->options = options; |
curp->options = options; |
curp->wlevel = wlevel; |
curp->mmin = mmin; |
curp->mmsg = mmsg; |
curp->mmsg = mmsg; |
curp->defos = defos; |
curp->os_s = os_s; |
|
|
curp->roff = roff_alloc(curp, options); |
curp->roff = roff_alloc(curp, options); |
curp->man = roff_man_alloc( curp->roff, curp, curp->defos, |
curp->man = roff_man_alloc(curp->roff, curp, curp->os_s, |
curp->options & MPARSE_QUICK ? 1 : 0); |
curp->options & MPARSE_QUICK ? 1 : 0); |
if (curp->options & MPARSE_MDOC) { |
if (curp->options & MPARSE_MDOC) { |
curp->man->macroset = MACROSET_MDOC; |
curp->man->macroset = MACROSET_MDOC; |
Line 770 mparse_alloc(int options, enum mandoclevel wlevel, man |
|
Line 789 mparse_alloc(int options, enum mandoclevel wlevel, man |
|
curp->man->manmac = roffhash_alloc(MAN_TH, MAN_MAX); |
curp->man->manmac = roffhash_alloc(MAN_TH, MAN_MAX); |
} |
} |
curp->man->first->tok = TOKEN_NONE; |
curp->man->first->tok = TOKEN_NONE; |
|
curp->man->meta.os_e = os_e; |
return curp; |
return curp; |
} |
} |
|
|
Line 845 mandoc_msg(enum mandocerr er, struct mparse *m, |
|
Line 865 mandoc_msg(enum mandocerr er, struct mparse *m, |
|
{ |
{ |
enum mandoclevel level; |
enum mandoclevel level; |
|
|
|
if (er < m->mmin && er != MANDOCERR_FILE) |
|
return; |
|
|
level = MANDOCLEVEL_UNSUPP; |
level = MANDOCLEVEL_UNSUPP; |
while (er < mandoclimits[level]) |
while (er < mandoclimits[level]) |
level--; |
level--; |
|
|
if (level < m->wlevel && er != MANDOCERR_FILE) |
|
return; |
|
|
|
if (m->mmsg) |
if (m->mmsg) |
(*m->mmsg)(er, level, m->file, ln, col, msg); |
(*m->mmsg)(er, level, m->file, ln, col, msg); |