X-Git-Url: https://git.cameronkatri.com/mandoc.git/blobdiff_plain/15ff2c88b54b3a9deb82db8f12168847c99a1904..1d26ffbd16140a752b2adcc259c2957382a4becc:/mdocml.c diff --git a/mdocml.c b/mdocml.c index 7ebd50a0..5fd51990 100644 --- a/mdocml.c +++ b/mdocml.c @@ -1,4 +1,4 @@ -/* $Id: mdocml.c,v 1.34 2009/01/05 16:11:14 kristaps Exp $ */ +/* $Id: mdocml.c,v 1.35 2009/01/05 17:57:08 kristaps Exp $ */ /* * Copyright (c) 2008 Kristaps Dzonsons * @@ -328,6 +328,9 @@ msg_err(void *arg, int tok, int col, enum mdoc_err type) fmt = lit = NULL; switch (type) { + case (ERR_SYNTAX_NOTEXT): + lit = "syntax: context-free text disallowed"; + break; case (ERR_SYNTAX_QUOTE): lit = "syntax: disallowed argument quotation"; break; @@ -357,7 +360,7 @@ msg_err(void *arg, int tok, int col, enum mdoc_err type) fmt = "scope: macro `%s' may not be nested in the current context"; break; case (ERR_MACRO_NOTSUP): - fmt = "macro `%s' not supported"; + lit = "macro not supported"; break; case (ERR_MACRO_NOTCALL): fmt = "macro `%s' not callable";