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 abe44bc3; for ; Wed, 4 Feb 2015 14:00:15 -0500 (EST) Date: Wed, 4 Feb 2015 14:00:15 -0500 (EST) Message-Id: <9463489644915699427.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: fix column numbers of macro arguments in messages X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Log Message: ----------- fix column numbers of macro arguments in messages Modified Files: -------------- mdocml: mdoc_argv.c Revision Data ------------- Index: mdoc_argv.c =================================================================== RCS file: /home/cvs/mdocml/mdocml/mdoc_argv.c,v retrieving revision 1.99 retrieving revision 1.100 diff -Lmdoc_argv.c -Lmdoc_argv.c -u -p -r1.99 -r1.100 --- mdoc_argv.c +++ mdoc_argv.c @@ -1,4 +1,4 @@ -/* $OpenBSD$ */ +/* $Id$ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2012, 2014 Ingo Schwarze @@ -339,7 +339,7 @@ mdoc_argv(struct mdoc *mdoc, int line, e /* Parse the arguments of the flag. */ tmpv.line = line; - tmpv.pos = ipos; + tmpv.pos = *pos; tmpv.sz = 0; tmpv.value = NULL; -- To unsubscribe send an email to source+unsubscribe@mdocml.bsd.lv