mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-04-25 07:40:40 -07:00
Adjust grep-mode end-col function return value
* lisp/progmodes/grep.el (grep-regexp-alist): Adjust the return value from the END-COL function by one since it is now (after fixing bug#49624) inclusive. Found by Juri Linkov.
This commit is contained in:
parent
67fe106d10
commit
4f43058e9a
1 changed files with 1 additions and 1 deletions
|
|
@ -389,7 +389,7 @@ Notice that using \\[next-error] or \\[compile-goto-error] modifies
|
|||
(and mbeg (next-single-property-change
|
||||
mbeg 'font-lock-face nil end))))
|
||||
(when mend
|
||||
(- mend beg))))))
|
||||
(- mend beg 1))))))
|
||||
nil nil
|
||||
(3 '(face nil display ":")))
|
||||
("^Binary file \\(.+\\) matches" 1 nil nil 0 1))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue