diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2014-10-16 01:28:38 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2014-10-16 01:28:38 +0000 |
commit | 0f914316c7fac59532818a80b733a10842fb51ee (patch) | |
tree | de998056ecc639ec06a4fece8cf50498ac21af25 /roff.c | |
parent | 1355393bef46aede0de7305138dd0b3b3dab287c (diff) | |
download | mandoc-0f914316c7fac59532818a80b733a10842fb51ee.tar.gz |
oops, don't escape the first token of inline equations
Diffstat (limited to 'roff.c')
-rw-r--r-- | roff.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1883,8 +1883,8 @@ roff_eqndelim(struct roff *r, char **bufp, size_t *szp, int pos) /* Replace the delimiter with an equation macro. */ - *szp = mandoc_asprintf(&cp1, "%s\n.E%c\n\\&%s", *bufp, - r->eqn == NULL ? 'Q' : 'N', cp2) + 1; + *szp = mandoc_asprintf(&cp1, "%s\n.E%s%s", *bufp, + r->eqn == NULL ? "Q\n" : "N\n\\&", cp2) + 1; free(*bufp); *bufp = cp1; |