From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-0.0 required=5.0 tests=T_SCC_BODY_TEXT_LINE, UNPARSEABLE_RELAY autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 21116 invoked from network); 19 May 2022 16:09:58 -0000 Received: from bsd.lv (HELO mandoc.bsd.lv) (66.111.2.12) by inbox.vuxu.org with ESMTPUTF8; 19 May 2022 16:09:58 -0000 Received: from fantadrom.bsd.lv (localhost [127.0.0.1]) by mandoc.bsd.lv (OpenSMTPD) with ESMTP id c29902fb for ; Thu, 19 May 2022 11:09:56 -0500 (EST) Received: from localhost (mandoc.bsd.lv [local]) by mandoc.bsd.lv (OpenSMTPD) with ESMTPA id e1b6d9ed for ; Thu, 19 May 2022 11:09:56 -0500 (EST) Date: Thu, 19 May 2022 11:09:56 -0500 (EST) X-Mailinglist: mandoc-source Reply-To: source@mandoc.bsd.lv MIME-Version: 1.0 From: schwarze@mandoc.bsd.lv To: source@mandoc.bsd.lv Subject: mandoc: Adjust a column number in an error message after the X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Message-ID: <336533e67c453633@mandoc.bsd.lv> Log Message: ----------- Adjust a column number in an error message after the roff_expand() reorganization in roff.c rev. 1.388. The new parsing direction has two effects: 1. Correct output when a line contains more than one expanding escape sequence that has a side effect. 2. Column numbers in diagnostic messages now report the changed column numbers after any expansions left of them have taken place; in the past, column numbers refered to the original input line. Arguably, item 2 was a bit better in its old state, but slightly less helpful diagnostics are a small price to pay for correct output. Besides, when the expansion of user-defined strings or macros is involved, in many cases, mandoc(1) is already unable to report meaningful line and column numbers, so item 2 is not a noteworthy regression. The effort and code complication for fixing that would probably be excessive, in particular since well-written manual pages are not supposed to use such features in the first place. Modified Files: -------------- mandoc/regress/roff/return: basic.out_lint Revision Data ------------- Index: basic.out_lint =================================================================== RCS file: /home/cvs/mandoc/mandoc/regress/roff/return/basic.out_lint,v retrieving revision 1.1 retrieving revision 1.2 diff -Lregress/roff/return/basic.out_lint -Lregress/roff/return/basic.out_lint -u -p -r1.1 -r1.2 --- regress/roff/return/basic.out_lint +++ regress/roff/return/basic.out_lint @@ -1,3 +1,3 @@ mandoc: basic.in:10:2: ERROR: ignoring request outside macro: return -mandoc: basic.in:18:32: ERROR: using macro argument outside macro: \$1 +mandoc: basic.in:18:28: ERROR: using macro argument outside macro: \$1 mandoc: basic.in:21:2: ERROR: ignoring request outside macro: return -- To unsubscribe send an email to source+unsubscribe@mandoc.bsd.lv