summaryrefslogtreecommitdiffstats
path: root/roff.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2008-12-07 16:41:04 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2008-12-07 16:41:04 +0000
commit8fd8d3e8c36a0ca787a81071a2847668e8e91619 (patch)
tree2f42ddfeedf477ff6a19d6d826a49b71763001f3 /roff.c
parentd36e26f3c71aeedde9cd92250bb5d09348e58fe5 (diff)
downloadmandoc-8fd8d3e8c36a0ca787a81071a2847668e8e91619.tar.gz
*** empty log message ***
Diffstat (limited to 'roff.c')
-rw-r--r--roff.c25
1 files changed, 24 insertions, 1 deletions
diff --git a/roff.c b/roff.c
index 6c45e8be..cc09d8f6 100644
--- a/roff.c
+++ b/roff.c
@@ -640,6 +640,13 @@ roffspecial(struct rofftree *tree, int tok, const char *start,
break;
roff_err(tree, start, "invalid `At' arg");
return(0);
+
+ case (ROFF_Fn):
+ if (0 != sz)
+ break;
+ roff_err(tree, start, "`%s' expects at least "
+ "one arg", toknames[tok]);
+ return(0);
case (ROFF_Nm):
if (0 == sz) {
@@ -1201,9 +1208,11 @@ roff_ordered(ROFFCALL_ARGS)
if ( ! roffparseopts(tree, tok, &argv, argcp, argvp))
return(0);
- if (NULL == *argv)
+ if (NULL == *argv) {
+ ordp[0] = NULL;
return(roffspecial(tree, tok, p, argcp,
(const char **)argvp, 0, ordp));
+ }
i = 0;
while (*argv && i < ROFF_MAXLINEARG) {
@@ -1281,6 +1290,8 @@ roff_text(ROFFCALL_ARGS)
* terminating punctuation. If we encounter it and all
* subsequent tokens are punctuation, then stop processing (the
* line-dominant macro will print these tokens after closure).
+ * If the punctuation is followed by non-punctuation, then close
+ * and re-open our scope, then continue.
*/
i = 0;
@@ -1312,8 +1323,20 @@ roff_text(ROFFCALL_ARGS)
break;
if (argv[j]) {
+ if (ROFF_LSCOPE & tokens[tok].flags) {
+ if ( ! roffdata(tree, 0, *argv++))
+ return(0);
+ continue;
+ }
+ if ( ! (*tree->cb.roffout)(tree->arg, tok))
+ return(0);
if ( ! roffdata(tree, 0, *argv++))
return(0);
+ if ( ! (*tree->cb.roffin)(tree->arg, tok,
+ argcp, argvp))
+ return(0);
+
+ i = 0;
continue;
}