=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mandoc/read.c,v retrieving revision 1.160 retrieving revision 1.161 diff -c -r1.160 -r1.161 *** src/usr.bin/mandoc/read.c 2017/07/04 14:40:30 1.160 --- src/usr.bin/mandoc/read.c 2017/07/06 22:58:44 1.161 *************** *** 1,4 **** ! /* $OpenBSD: read.c,v 1.160 2017/07/04 14:40:30 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2010-2017 Ingo Schwarze --- 1,4 ---- ! /* $OpenBSD: read.c,v 1.161 2017/07/06 22:58:44 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2010-2017 Ingo Schwarze *************** *** 94,124 **** "generic style suggestion", "legacy man(7) date format", "duplicate RCS id", "typo in section name", "useless macro", "consider using OS macro", "errnos out of order", "duplicate errno", "trailing delimiter", "no blank before trailing delimiter", "function name without markup", "generic warning", /* related to the prologue */ "missing manual title, using UNTITLED", "missing manual title, using \"\"", - "lower case character in document title", "missing manual section, using \"\"", "unknown manual section", "missing date, using today's date", "cannot parse date, using it verbatim", "date in the future, using it anyway", "missing Os macro, using \"\"", - "duplicate prologue macro", "late prologue macro", - "skipping late title macro", "prologue macros out of order", /* related to document structure */ --- 94,127 ---- "generic style suggestion", "legacy man(7) date format", + "lower case character in document title", "duplicate RCS id", "typo in section name", + "unterminated quoted argument", "useless macro", "consider using OS macro", "errnos out of order", "duplicate errno", "trailing delimiter", "no blank before trailing delimiter", + "fill mode already enabled, skipping", + "fill mode already disabled, skipping", "function name without markup", + "whitespace at end of input line", + "bad comment style", "generic warning", /* related to the prologue */ "missing manual title, using UNTITLED", "missing manual title, using \"\"", "missing manual section, using \"\"", "unknown manual section", "missing date, using today's date", "cannot parse date, using it verbatim", "date in the future, using it anyway", "missing Os macro, using \"\"", "late prologue macro", "prologue macros out of order", /* related to document structure */ *************** *** 151,158 **** "nested displays are not portable", "moving content out of list", "first macro on line", - "fill mode already enabled, skipping", - "fill mode already disabled, skipping", "line scope broken", "skipping blank line in line scope", --- 154,159 ---- *************** *** 181,187 **** "missing eqn box, using \"\"", /* related to bad macro arguments */ - "unterminated quoted argument", "duplicate argument", "skipping duplicate argument", "skipping duplicate display type", --- 182,187 ---- *************** *** 200,208 **** /* related to plain text */ "blank line in fill mode, using .sp", "tab in filled text", - "whitespace at end of input line", "new sentence, new line", - "bad comment style", "invalid escape sequence", "undefined string, using \"\"", --- 200,206 ---- *************** *** 228,233 **** --- 226,233 ---- /* related to document structure and macros */ NULL, + "duplicate prologue macro", + "skipping late title macro", "input stack limit exceeded, infinite loop?", "skipping bad character", "skipping unknown macro",