Mercurial > emacs
changeset 71422:2611669abf9e
(grep-mode-font-lock-keywords): Correct regexps
to recognize mode name containing submodes, such as Grep/lw.
author | Kim F. Storm <storm@cua.dk> |
---|---|
date | Thu, 22 Jun 2006 14:13:49 +0000 |
parents | 1b59da485fdb |
children | 753faaed6711 |
files | lisp/progmodes/grep.el |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/progmodes/grep.el Thu Jun 22 14:13:30 2006 +0000 +++ b/lisp/progmodes/grep.el Thu Jun 22 14:13:49 2006 +0000 @@ -282,13 +282,13 @@ (": \\(.+\\): \\(?:Permission denied\\|No such \\(?:file or directory\\|device or address\\)\\)$" 1 grep-error-face) ;; remove match from grep-regexp-alist before fontifying - ("^Grep started.*" + ("^Grep[/a-zA-z]* started.*" (0 '(face nil message nil help-echo nil mouse-face nil) t)) - ("^Grep finished \\(?:(\\(matches found\\))\\|with \\(no matches found\\)\\).*" + ("^Grep[/a-zA-z]* finished \\(?:(\\(matches found\\))\\|with \\(no matches found\\)\\).*" (0 '(face nil message nil help-echo nil mouse-face nil) t) (1 compilation-info-face nil t) (2 compilation-warning-face nil t)) - ("^Grep \\(exited abnormally\\|interrupt\\|killed\\|terminated\\)\\(?:.*with code \\([0-9]+\\)\\)?.*" + ("^Grep[/a-zA-z]* \\(exited abnormally\\|interrupt\\|killed\\|terminated\\)\\(?:.*with code \\([0-9]+\\)\\)?.*" (0 '(face nil message nil help-echo nil mouse-face nil) t) (1 grep-error-face) (2 grep-error-face nil t))