source@mandoc.bsd.lv
 help / color / mirror / Atom feed
* mdocml: oops, don't escape the first token of inline equations
@ 2014-10-16  1:28 schwarze
  0 siblings, 0 replies; only message in thread
From: schwarze @ 2014-10-16  1:28 UTC (permalink / raw)
  To: source

Log Message:
-----------
oops, don't escape the first token of inline equations

Modified Files:
--------------
    mdocml:
        roff.c

Revision Data
-------------
Index: roff.c
===================================================================
RCS file: /usr/vhosts/mdocml.bsd.lv/cvs/mdocml/roff.c,v
retrieving revision 1.230
retrieving revision 1.231
diff -Lroff.c -Lroff.c -u -p -r1.230 -r1.231
--- roff.c
+++ roff.c
@@ -1883,8 +1883,8 @@ roff_eqndelim(struct roff *r, char **buf
 
 	/* 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;
 
--
 To unsubscribe send an email to source+unsubscribe@mdocml.bsd.lv

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2014-10-16  1:28 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-10-16  1:28 mdocml: oops, don't escape the first token of inline equations schwarze

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).