=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mandoc/read.c,v retrieving revision 1.55 retrieving revision 1.56 diff -c -r1.55 -r1.56 *** src/usr.bin/mandoc/read.c 2014/08/08 15:48:43 1.55 --- src/usr.bin/mandoc/read.c 2014/08/08 15:54:10 1.56 *************** *** 1,4 **** ! /* $Id: read.c,v 1.55 2014/08/08 15:48:43 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2010-2014 Ingo Schwarze --- 1,4 ---- ! /* $Id: read.c,v 1.56 2014/08/08 15:54:10 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2010-2014 Ingo Schwarze *************** *** 115,122 **** "nested displays are not portable", "moving content out of list", ".Vt block has child macro", ! "fill mode already enabled, skipping .fi", ! "fill mode already disabled, skipping .nf", "line scope broken", /* related to missing macro arguments */ --- 115,122 ---- "nested displays are not portable", "moving content out of list", ".Vt block has child macro", ! "fill mode already enabled, skipping", ! "fill mode already disabled, skipping", "line scope broken", /* related to missing macro arguments */ *************** *** 128,134 **** "missing display type, using -ragged", "list type is not the first argument", "missing -width in -tag list, using 8n", ! "missing name for .Ex, using \"\"", "empty head in list item", "empty list item", "missing font type, using \\fR", --- 128,134 ---- "missing display type, using -ragged", "list type is not the first argument", "missing -width in -tag list, using 8n", ! "missing utility name, using \"\"", "empty head in list item", "empty list item", "missing font type, using \\fR", *************** *** 198,204 **** "generic fatal error", "input too large", ! "NOT IMPLEMENTED: .Bd -file", "NOT IMPLEMENTED: .so with absolute path or \"..\"", ".so request failed", --- 198,204 ---- "generic fatal error", "input too large", ! "NOT IMPLEMENTED: Bd -file", "NOT IMPLEMENTED: .so with absolute path or \"..\"", ".so request failed", *************** *** 345,352 **** if ( ! (isascii(c) && (isgraph(c) || isblank(c)))) { ! mandoc_msg(MANDOCERR_BADCHAR, curp, ! curp->line, pos, NULL); i++; ln.buf[pos++] = '?'; continue; --- 345,352 ---- if ( ! (isascii(c) && (isgraph(c) || isblank(c)))) { ! mandoc_vmsg(MANDOCERR_BADCHAR, curp, ! curp->line, pos, "0x%x", c); i++; ln.buf[pos++] = '?'; continue; *************** *** 402,409 **** if ( ! (isascii(c) && (isgraph(c) || isblank(c)))) { ! mandoc_msg(MANDOCERR_BADCHAR, curp, ! curp->line, pos, NULL); i += 2; ln.buf[pos++] = '?'; continue; --- 402,409 ---- if ( ! (isascii(c) && (isgraph(c) || isblank(c)))) { ! mandoc_vmsg(MANDOCERR_BADCHAR, curp, ! curp->line, pos, "0x%x", c); i += 2; ln.buf[pos++] = '?'; continue;