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 db049806; for ; Thu, 29 Jan 2015 19:20:17 -0500 (EST) Date: Thu, 29 Jan 2015 19:20:17 -0500 (EST) Message-Id: <15278205966587658004.enqueue@fantadrom.bsd.lv> X-Mailinglist: mdocml-source Reply-To: source@mdocml.bsd.lv MIME-Version: 1.0 From: schwarze@mdocml.bsd.lv To: source@mdocml.bsd.lv Subject: mdocml: correctly handle table layout lines starting with a dot X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Log Message: ----------- correctly handle table layout lines starting with a dot Modified Files: -------------- mdocml: roff.c Revision Data ------------- Index: roff.c =================================================================== RCS file: /home/cvs/mdocml/mdocml/roff.c,v retrieving revision 1.258 retrieving revision 1.259 diff -Lroff.c -Lroff.c -u -p -r1.258 -r1.259 --- roff.c +++ roff.c @@ -1202,7 +1202,7 @@ roff_parseln(struct roff *r, int ln, str if (r->eqn != NULL) return(eqn_read(&r->eqn, ln, buf->buf, ppos, offs)); if (r->tbl != NULL && ( ! ctl || buf->buf[pos] == '\0')) - return(tbl_read(r->tbl, ln, buf->buf, pos)); + return(tbl_read(r->tbl, ln, buf->buf, ppos)); if ( ! ctl) return(roff_parsetext(buf, pos, offs)); -- To unsubscribe send an email to source+unsubscribe@mdocml.bsd.lv