emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#49624: closed (compilation message end-column function off-by-one bu


From: GNU bug Tracking System
Subject: bug#49624: closed (compilation message end-column function off-by-one bug)
Date: Fri, 23 Jul 2021 13:26:02 +0000

Your message dated Fri, 23 Jul 2021 15:24:55 +0200
with message-id <71FBE546-8821-497D-83A9-A6E4CF0BBBA3@acm.org>
and subject line Re: bug#49624: compilation message end-column function 
off-by-one bug
has caused the debbugs.gnu.org bug report #49624,
regarding compilation message end-column function off-by-one bug
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
49624: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=49624
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: compilation message end-column function off-by-one bug Date: Sun, 18 Jul 2021 21:00:41 +0200
Compilation message patterns (in compilation-regexp-alist and -alist) can 
indicate starting and ending line and column numbers, either by supplying 
regexp match numbers or functions that return the respective line/column 
numbers when called. In other words, the integer N can be understood as a 
shorthand for the function

(lambda () (and (match-beginning N) (string-to-number (match-string N))))

except that isn't true for the ending column where there is a difference of 1; 
an END-COL function returning 13 means that the error's last column is 12.

There does not seem to be a good justification for this nor is it documented so 
it's probably just a bug; proposed patch attached below. Does it warrant a 
mention in etc/NEWS?

Attachment: 0001-Fix-off-by-one-error-in-compilation-rule-end-column-.patch
Description: Binary data


--- End Message ---
--- Begin Message --- Subject: Re: bug#49624: compilation message end-column function off-by-one bug Date: Fri, 23 Jul 2021 15:24:55 +0200
19 juli 2021 kl. 23.43 skrev Juri Linkov <juri@linkov.net>:

>> Not even 9dc3a46a444a46e00ed3287a3174d73ed9511dac where the funcall for col 
>> and end-col originated?
>> In any case, no worry -- I'll deal with it.
> 
> My apologies.  This commit is so old that I even don't recognize it.
> I need to study this code again since I don't remember this part
> of compile.el.

Thank you, but it's not that important. Let's not overthink it -- I'm treating 
it as the bug it is and have pushed the obvious fix to master.



--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]