GNU bug report logs -
#59888
[PATCH] Add 'grep-heading-mode'
Previous Next
Reported by: Augusto Stoffel <arstoffel <at> gmail.com>
Date: Wed, 7 Dec 2022 17:58:02 UTC
Severity: wishlist
Tags: patch
Fixed in version 30.0.50
Done: Juri Linkov <juri <at> linkov.net>
Bug is archived. No further changes may be made.
Full log
Message #14 received at 59888 <at> debbugs.gnu.org (full text, mbox):
On Wed, 7 Dec 2022 at 20:14, Eli Zaretskii wrote:
>> From: Augusto Stoffel <arstoffel <at> gmail.com>
>> Date: Wed, 07 Dec 2022 18:57:37 +0100
>>
>> +(defcustom grep-heading-regexp
>> + (rx bol
>> + (or
>> + (seq "Grep" (* (any "/a-zA-Z")) " "
>> + (or "started" "finished" "exited" "interrupt" "killed" "terminated")
>
> Cannot these be translated to languages other than English in
> localized versions of Grep?
AFAICT these messages are generated by Emacs itself.
We could also use "^Grep[/a-zA-Z]* [^\0t\]*$" here, which has a slightly
higher change of being confused with actual grep output, but only when
not using grep --null.
>> 2. One could get rid of the awkward first alternative of
>> `grep-heading-regexp' if there was a way to distringuish the grep
>> process output from the header and footer added by grep-mode.
>
> You could put a special text property on the latter, no?
That's an option and it would be useful for other extensions as well.
So we would define something like
--8<---------------cut here---------------start------------->8---
(defun compilation-insert-note (&rest args)
(let ((start (point)))
(apply #'insert args)
(put-text-property start (point) 'compilation-note t)))
--8<---------------cut here---------------end--------------->8---
and use throughout compile.el, right?
This bug report was last modified 2 years and 162 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.