aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/out.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-11-08 09:23:35 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-11-08 09:23:35 +0000
commitd9e67de8a307ad4987bf67f964a22e475e56644e (patch)
tree4b0ecdcaf34315d5d17e0180d1d84093ce1366e5 /out.c
parentb01b4dbd0137ad522cd297b8995201927cd7842c (diff)
downloadmandoc-d9e67de8a307ad4987bf67f964a22e475e56644e.tar.gz
mandoc-d9e67de8a307ad4987bf67f964a22e475e56644e.tar.zst
mandoc-d9e67de8a307ad4987bf67f964a22e475e56644e.zip
a2roffdeco() now supports \s escapes.
Diffstat (limited to 'out.c')
-rw-r--r--out.c142
1 files changed, 67 insertions, 75 deletions
diff --git a/out.c b/out.c
index e217327c..713e5fa2 100644
--- a/out.c
+++ b/out.c
@@ -1,4 +1,4 @@
-/* $Id: out.c,v 1.9 2009/11/07 14:14:15 kristaps Exp $ */
+/* $Id: out.c,v 1.10 2009/11/08 09:23:35 kristaps Exp $ */
/*
* Copyright (c) 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -25,6 +25,26 @@
#include "out.h"
+/* See a2roffdeco(). */
+#define C2LIM(c, l) do { \
+ (l) = 1; \
+ if ('[' == (c) || '\'' == (c)) \
+ (l) = 0; \
+ else if ('(' == (c)) \
+ (l) = 2; } \
+ while (/* CONSTCOND */ 0)
+
+/* See a2roffdeco(). */
+#define C2TERM(c, t) do { \
+ (t) = 0; \
+ if ('\'' == (c)) \
+ (t) = 1; \
+ else if ('[' == (c)) \
+ (t) = 2; \
+ else if ('(' == (c)) \
+ (t) = 3; } \
+ while (/* CONSTCOND */ 0)
+
#ifdef __linux__
extern size_t strlcat(char *, const char *, size_t);
#endif
@@ -167,13 +187,18 @@ time2a(time_t t, char *dst, size_t sz)
}
-/* Returns length of parsed string. */
+/*
+ * Returns length of parsed string (the leading "\" should NOT be
+ * included). This can be zero if the current character is the nil
+ * terminator. "d" is set to the type of parsed decorator, which may
+ * have an adjoining "word" of size "sz" (e.g., "(ab" -> "ab", 2).
+ */
int
a2roffdeco(enum roffdeco *d,
const char **word, size_t *sz)
{
- int j, type, sv, t, lim;
- const char *wp;
+ int j, type, term, lim;
+ const char *wp, *sp;
*d = DECO_NONE;
wp = *word;
@@ -184,8 +209,7 @@ a2roffdeco(enum roffdeco *d,
return(0);
case ('('):
- wp++;
- if ('\0' == *wp)
+ if ('\0' == *(++wp))
return(1);
if ('\0' == *(wp + 1))
return(2);
@@ -196,15 +220,12 @@ a2roffdeco(enum roffdeco *d,
return(3);
case ('*'):
- wp++;
-
- switch (*wp) {
+ switch (*(++wp)) {
case ('\0'):
return(1);
case ('('):
- wp++;
- if ('\0' == *wp)
+ if ('\0' == *(++wp))
return(2);
if ('\0' == *(wp + 1))
return(3);
@@ -226,90 +247,61 @@ a2roffdeco(enum roffdeco *d,
}
break;
-#if 0
case ('s'):
- wp++;
-
- /* This closely follows mandoc_special(). */
- if ('\0' == *wp)
+ sp = wp;
+ if ('\0' == *(++wp))
return(1);
- t = 0;
- lim = 1;
+ C2LIM(*wp, lim);
+ C2TERM(*wp, term);
- if (*wp == '\'') {
- lim = 0;
- t = 1;
- ++wp;
- } else if (*wp == '[') {
- lim = 0;
- t = 2;
- ++wp;
- } else if (*wp == '(') {
- lim = 2;
- t = 3;
- ++wp;
- }
+ if (term)
+ wp++;
+
+ *word = wp;
if (*wp == '+' || *wp == '-')
++wp;
- if (*wp == '\'') {
- if (t) {
- *word = wp;
- return;
- }
- lim = 0;
- t = 1;
- ++wp;
- } else if (*wp == '[') {
- if (t) {
- *word = wp;
- return;
- }
- lim = 0;
- t = 2;
- ++wp;
- } else if (*wp == '(') {
- if (t) {
- *word = wp;
- return;
- }
- lim = 2;
- t = 3;
- ++wp;
- }
+ switch (*wp) {
+ case ('\''):
+ /* FALLTHROUGH */
+ case ('['):
+ /* FALLTHROUGH */
+ case ('('):
+ if (term)
+ return((int)(wp - sp));
- if ( ! isdigit((u_char)*wp)) {
- *word = --wp;
- return;
+ C2LIM(*wp, lim);
+ C2TERM(*wp, term);
+ wp++;
+ break;
+ default:
+ break;
}
+ if ( ! isdigit((u_char)*wp))
+ return((int)(wp - sp));
+
for (j = 0; isdigit((u_char)*wp); j++) {
if (lim && j >= lim)
break;
++wp;
}
- if (t && t < 3) {
- if (1 == t && *wp != '\'') {
- *word = --wp;
- return;
- }
- if (2 == t && *wp != ']') {
- *word = --wp;
- return;
- }
+ if (term && term < 3) {
+ if (1 == term && *wp != '\'')
+ return((int)(wp - sp));
+ if (2 == term && *wp != ']')
+ return((int)(wp - sp));
++wp;
}
- *word = --wp;
- return;
-#endif
- case ('f'):
- wp++;
+ *d = DECO_SIZE;
+ return((int)(wp - sp));
- switch (*wp) {
+ case ('f'):
+ switch (*(++wp)) {
case ('\0'):
return(1);
case ('3'):
@@ -354,6 +346,6 @@ a2roffdeco(enum roffdeco *d,
return(j + 1);
*d = type ? DECO_SPECIAL : DECO_RESERVED;
- *sz = j;
+ *sz = (size_t)j;
return (j + 2);
}