From ee5166e47bf9023c5bef7b18355da9392155a340 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Thu, 20 Aug 2009 11:44:47 +0000 Subject: Fix to libmdoc passing over delimiters. `RS' and `RE' documented in man.7. --- mdoc.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'mdoc.c') diff --git a/mdoc.c b/mdoc.c index 080233bc..e382e692 100644 --- a/mdoc.c +++ b/mdoc.c @@ -1,4 +1,4 @@ -/* $Id: mdoc.c,v 1.102 2009/08/19 14:09:33 kristaps Exp $ */ +/* $Id: mdoc.c,v 1.103 2009/08/20 11:44:47 kristaps Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * @@ -682,7 +682,7 @@ macrowarn(struct mdoc *m, int ln, const char *buf) int parsemacro(struct mdoc *m, int ln, char *buf) { - int i, j, c, ppos; + int i, j, c; char mac[5]; /* Empty lines are ignored. */ @@ -702,8 +702,6 @@ parsemacro(struct mdoc *m, int ln, char *buf) return(1); } - ppos = i; - /* Copy the first word into a nil-terminated buffer. */ for (j = 0; j < 4; j++, i++) { @@ -736,7 +734,7 @@ parsemacro(struct mdoc *m, int ln, char *buf) * Begin recursive parse sequence. Since we're at the start of * the line, we don't need to do callable/parseable checks. */ - if ( ! mdoc_macro(m, c, ln, ppos, &i, buf)) + if ( ! mdoc_macro(m, c, ln, 1, &i, buf)) goto err; return(1); -- cgit v1.2.3-56-ge451