aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/roff.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2015-08-29 21:37:20 +0000
committerIngo Schwarze <schwarze@openbsd.org>2015-08-29 21:37:20 +0000
commit71472a8560e814daaed28a4c8419af566b7da2a1 (patch)
treecf8c3e4a5e75182dc82b509790c58f6a5c8cf0ab /roff.c
parent9095bc771b89105c1f0db983ffea88aa4f11d972 (diff)
downloadmandoc-71472a8560e814daaed28a4c8419af566b7da2a1.tar.gz
mandoc-71472a8560e814daaed28a4c8419af566b7da2a1.tar.zst
mandoc-71472a8560e814daaed28a4c8419af566b7da2a1.zip
Implement the escape sequence \\$*, expanding to all arguments
of the current user-defined macro. This is another missing feature required for ocserv(8). Problem reported by Kurt Jaeger <pi at FreeBSD>.
Diffstat (limited to 'roff.c')
-rw-r--r--roff.c43
1 files changed, 27 insertions, 16 deletions
diff --git a/roff.c b/roff.c
index d28cea9c..e72c965a 100644
--- a/roff.c
+++ b/roff.c
@@ -1,4 +1,4 @@
-/* $Id: roff.c,v 1.273 2015/08/29 20:26:04 schwarze Exp $ */
+/* $Id: roff.c,v 1.274 2015/08/29 21:37:20 schwarze Exp $ */
/*
* Copyright (c) 2008-2012, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2010-2015 Ingo Schwarze <schwarze@openbsd.org>
@@ -3080,7 +3080,7 @@ roff_userdef(ROFF_ARGS)
{
const char *arg[9], *ap;
char *cp, *n1, *n2;
- int i;
+ int i, ib, ie;
size_t asz, rsz;
/*
@@ -3114,9 +3114,14 @@ roff_userdef(ROFF_ARGS)
continue;
if (*cp++ != '$')
continue;
- i = *cp - '1';
- if (0 > i || 8 < i)
- continue;
+ if (*cp == '*') { /* \\$* inserts all arguments */
+ ib = 0;
+ ie = r->argc - 1;
+ } else { /* \\$1 .. \\$9 insert one argument */
+ ib = ie = *cp - '1';
+ if (ib < 0 || ib > 8)
+ continue;
+ }
cp -= 2;
/*
@@ -3124,11 +3129,13 @@ roff_userdef(ROFF_ARGS)
* taking escaping of quotes into account.
*/
- asz = 0;
- for (ap = arg[i]; *ap != '\0'; ap++) {
- asz++;
- if (*ap == '"')
- asz += 3;
+ asz = ie > ib ? ie - ib : 0; /* for blanks */
+ for (i = ib; i <= ie; i++) {
+ for (ap = arg[i]; *ap != '\0'; ap++) {
+ asz++;
+ if (*ap == '"')
+ asz += 3;
+ }
}
if (asz != 3) {
@@ -3169,12 +3176,16 @@ roff_userdef(ROFF_ARGS)
/* Copy the expanded argument, escaping quotes. */
n2 = cp;
- for (ap = arg[i]; *ap != '\0'; ap++) {
- if (*ap == '"') {
- memcpy(n2, "\\(dq", 4);
- n2 += 4;
- } else
- *n2++ = *ap;
+ for (i = ib; i <= ie; i++) {
+ for (ap = arg[i]; *ap != '\0'; ap++) {
+ if (*ap == '"') {
+ memcpy(n2, "\\(dq", 4);
+ n2 += 4;
+ } else
+ *n2++ = *ap;
+ }
+ if (i < ie)
+ *n2++ = ' ';
}
}