aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/mdoc_macro.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2010-05-15 06:48:13 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2010-05-15 06:48:13 +0000
commit164c2ced881cacd1340af5361de6bb6bf55b1b51 (patch)
tree426a0365f7adcef91c9e1eb2b7f76d7fe57c50e5 /mdoc_macro.c
parent2f982d9463ec2021851fa038a13f83f1de048de4 (diff)
downloadmandoc-164c2ced881cacd1340af5361de6bb6bf55b1b51.tar.gz
mandoc-164c2ced881cacd1340af5361de6bb6bf55b1b51.tar.zst
mandoc-164c2ced881cacd1340af5361de6bb6bf55b1b51.zip
More EOS: append_delims() fitted with EOS detection, so ANY macro with appended delimiters will properly EOS.
Fixed mandoc_eos() to accept sentence punctuation followed by close-delim buffers.
Diffstat (limited to 'mdoc_macro.c')
-rw-r--r--mdoc_macro.c29
1 files changed, 22 insertions, 7 deletions
diff --git a/mdoc_macro.c b/mdoc_macro.c
index 079b8aa5..ca6bbeab 100644
--- a/mdoc_macro.c
+++ b/mdoc_macro.c
@@ -1,4 +1,4 @@
-/* $Id: mdoc_macro.c,v 1.65 2010/05/15 04:47:38 kristaps Exp $ */
+/* $Id: mdoc_macro.c,v 1.66 2010/05/15 06:48:13 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -622,26 +622,41 @@ rew_sub(enum mdoc_type t, struct mdoc *m,
static int
-append_delims(struct mdoc *mdoc, int line, int *pos, char *buf)
+append_delims(struct mdoc *m, int line, int *pos, char *buf)
{
- int lastarg;
+ int la;
enum margserr ac;
char *p;
- if (0 == buf[*pos])
+ if ('\0' == buf[*pos])
return(1);
for (;;) {
- lastarg = *pos;
- ac = mdoc_zargs(mdoc, line, pos, buf, ARGS_NOWARN, &p);
+ la = *pos;
+ ac = mdoc_zargs(m, line, pos, buf, ARGS_NOWARN, &p);
if (ARGS_ERROR == ac)
return(0);
else if (ARGS_EOLN == ac)
break;
+
assert(mdoc_isdelim(p));
- if ( ! mdoc_word_alloc(mdoc, line, lastarg, p))
+ if ( ! mdoc_word_alloc(m, line, la, p))
return(0);
+
+ /*
+ * If we encounter end-of-sentence symbols, then trigger
+ * the double-space.
+ *
+ * XXX: it's easy to allow this to propogate outward to
+ * the last symbol, such that `. )' will cause the
+ * correct double-spacing. However, (1) groff isn't
+ * smart enough to do this and (2) it would require
+ * knowing which symbols break this behaviour, for
+ * example, `. ;' shouldn't propogate the double-space.
+ */
+ if (mandoc_eos(p, strlen(p)))
+ m->last->flags |= MDOC_EOS;
}
return(1);