From c0667bb0674363961e21650dd6fa239e4696d039 Mon Sep 17 00:00:00 2001 From: Ingo Schwarze Date: Thu, 28 Apr 2022 16:21:09 +0000 Subject: The syntax of the roff(7) .mc request is quite special and the roff_onearg() parsing function is too generic, so provide a dedicated parsing function instead. This fixes an assertion failure when an \o escape sequence is passed as the argument; the bug was found by tb@ using afl(1). It also makes mandoc output more similar to groff in various cases. --- regress/roff/mc/args.in | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 regress/roff/mc/args.in (limited to 'regress/roff/mc/args.in') diff --git a/regress/roff/mc/args.in b/regress/roff/mc/args.in new file mode 100644 index 00000000..4e9b245f --- /dev/null +++ b/regress/roff/mc/args.in @@ -0,0 +1,29 @@ +.\" $OpenBSD: args.in,v 1.1 2022/04/28 16:16:46 schwarze Exp $ +.TH MC-ARGS 1 "April 28, 2022" +.SH NAME +mc-args \- arguments to the .mc request +.SH DESCRIPTION +.ll 50n +.nf +initial text +.mc |suffix +ASCII character in the margin +.mc \CXX +invalid escape sequence +.mc \! +unsupported escape sequence +.mc \a +ignored escape sequence +.mc \(ba +special character in the margin +.mc \[integral] +special character represented as string +.mc \fR +font escape in the margin +.mc \N'124' +numbered character in the margin +.mc \[u007C]suffix +Unicode character in the margin +.mc \o'o/' +overstriking in the margin +.ll -- cgit