From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from localhost (fantadrom.bsd.lv [local]); by fantadrom.bsd.lv (OpenSMTPD) with ESMTPA id a0907923; for ; Wed, 25 Feb 2015 10:15:48 -0500 (EST) Date: Wed, 25 Feb 2015 10:15:48 -0500 (EST) Message-Id: <1329021743694030963.enqueue@fantadrom.bsd.lv> X-Mailinglist: mdocml-source Reply-To: source@mdocml.bsd.lv MIME-Version: 1.0 From: kristaps@mdocml.bsd.lv To: source@mdocml.bsd.lv Subject: texi2mdoc: Handle newline properly w/r/t vspace. X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Log Message: ----------- Handle newline properly w/r/t vspace. Modified Files: -------------- texi2mdoc: main.c Revision Data ------------- Index: main.c =================================================================== RCS file: /home/cvs/mdocml/texi2mdoc/main.c,v retrieving revision 1.47 retrieving revision 1.48 diff -Lmain.c -Lmain.c -u -p -r1.47 -r1.48 --- main.c +++ main.c @@ -432,7 +432,8 @@ dodefn(struct texi *p, enum texicmd cmd, break; } - texiputchars(p, ":\n"); + texiputchar(p, ':'); + texiputchar(p, '\n'); switch (cmd) { case (TEXICMD_DEFMAC): -- To unsubscribe send an email to source+unsubscribe@mdocml.bsd.lv