diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2022-06-05 13:54:09 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2022-06-05 13:54:09 +0000 |
commit | 4051ca4c1c6b3fe1989bc59d0c584464e8f8d84b (patch) | |
tree | f7dbab9b16049f04a8729b95a4186ce290d13224 /regress/roff/string/name.out_lint | |
parent | 7e17b66dfe3fa638b5bdaa235a97312af792f229 (diff) | |
download | mandoc-4051ca4c1c6b3fe1989bc59d0c584464e8f8d84b.tar.gz |
With the improved escape sequence parser, it becomes easy to also improve
diagnostics. Distinguish "incomplete escape sequence", "invalid special
character", and "unknown special character" from the generic "invalid
escape sequence", also promoting them from WARNING to ERROR because
incomplete escape sequences are severe syntax violations and because
encountering an invalid or unknown special character makes it likely
that part of the document content intended by the authors gets lost.
Diffstat (limited to 'regress/roff/string/name.out_lint')
-rw-r--r-- | regress/roff/string/name.out_lint | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/regress/roff/string/name.out_lint b/regress/roff/string/name.out_lint index 13283f5d..55f1f87b 100644 --- a/regress/roff/string/name.out_lint +++ b/regress/roff/string/name.out_lint @@ -1,6 +1,6 @@ mandoc: name.in:11:5: ERROR: escaped character not allowed in a name: bs\e mandoc: name.in:14:5: ERROR: escaped character not allowed in a name: bl\ -mandoc: name.in:18:29: WARNING: invalid escape sequence: \*[norm +mandoc: name.in:18:29: ERROR: incomplete escape sequence: \*[norm mandoc: name.in:18:28: STYLE: whitespace at end of input line mandoc: name.in:20:7: WARNING: undefined string, using "": quot mandoc: name.in:20:6: STYLE: whitespace at end of input line |