aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm2006-06-22 14:13:49 +0000
committerKim F. Storm2006-06-22 14:13:49 +0000
commitc2c04c28f38a94fbfaec48daa2f1c89ec54db937 (patch)
tree0b827c5a6e342de8943b6cfb708dca8e5afa987c
parent9b8648b8ff5874437e6f4ddbd75eca39ff220ed0 (diff)
downloademacs-c2c04c28f38a94fbfaec48daa2f1c89ec54db937.tar.gz
emacs-c2c04c28f38a94fbfaec48daa2f1c89ec54db937.zip
(grep-mode-font-lock-keywords): Correct regexps
to recognize mode name containing submodes, such as Grep/lw.
-rw-r--r--lisp/progmodes/grep.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/progmodes/grep.el b/lisp/progmodes/grep.el
index d207094cafe..eb803422027 100644
--- a/lisp/progmodes/grep.el
+++ b/lisp/progmodes/grep.el
@@ -282,13 +282,13 @@ Notice that using \\[next-error] or \\[compile-goto-error] modifies
282 (": \\(.+\\): \\(?:Permission denied\\|No such \\(?:file or directory\\|device or address\\)\\)$" 282 (": \\(.+\\): \\(?:Permission denied\\|No such \\(?:file or directory\\|device or address\\)\\)$"
283 1 grep-error-face) 283 1 grep-error-face)
284 ;; remove match from grep-regexp-alist before fontifying 284 ;; remove match from grep-regexp-alist before fontifying
285 ("^Grep started.*" 285 ("^Grep[/a-zA-z]* started.*"
286 (0 '(face nil message nil help-echo nil mouse-face nil) t)) 286 (0 '(face nil message nil help-echo nil mouse-face nil) t))
287 ("^Grep finished \\(?:(\\(matches found\\))\\|with \\(no matches found\\)\\).*" 287 ("^Grep[/a-zA-z]* finished \\(?:(\\(matches found\\))\\|with \\(no matches found\\)\\).*"
288 (0 '(face nil message nil help-echo nil mouse-face nil) t) 288 (0 '(face nil message nil help-echo nil mouse-face nil) t)
289 (1 compilation-info-face nil t) 289 (1 compilation-info-face nil t)
290 (2 compilation-warning-face nil t)) 290 (2 compilation-warning-face nil t))
291 ("^Grep \\(exited abnormally\\|interrupt\\|killed\\|terminated\\)\\(?:.*with code \\([0-9]+\\)\\)?.*" 291 ("^Grep[/a-zA-z]* \\(exited abnormally\\|interrupt\\|killed\\|terminated\\)\\(?:.*with code \\([0-9]+\\)\\)?.*"
292 (0 '(face nil message nil help-echo nil mouse-face nil) t) 292 (0 '(face nil message nil help-echo nil mouse-face nil) t)
293 (1 grep-error-face) 293 (1 grep-error-face)
294 (2 grep-error-face nil t)) 294 (2 grep-error-face nil t))