summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--out.c20
1 files changed, 5 insertions, 15 deletions
diff --git a/out.c b/out.c
index 92b2c14a..6886f428 100644
--- a/out.c
+++ b/out.c
@@ -218,24 +218,14 @@ a2roffdeco(enum roffdeco *d, const char **word, size_t *sz)
break;
}
break;
- case ('*'):
- *d = DECO_RESERVED;
- switch (wp[i++]) {
- case ('('):
- lim = 2;
- break;
- case ('['):
- term = ']';
- break;
- default:
- i--;
- lim = 1;
- break;
- }
- break;
case ('M'):
/* FALLTHROUGH */
case ('m'):
+ /* FALLTHROUGH */
+ case ('*'):
+ if ('*' == c)
+ *d = DECO_RESERVED;
+
switch (wp[i++]) {
case ('('):
lim = 2;