Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
c2c04c28
Commit
c2c04c28
authored
Jun 22, 2006
by
Kim F. Storm
Browse files
(grep-mode-font-lock-keywords): Correct regexps
to recognize mode name containing submodes, such as Grep/lw.
parent
9b8648b8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
lisp/progmodes/grep.el
lisp/progmodes/grep.el
+3
-3
No files found.
lisp/progmodes/grep.el
View file @
c2c04c28
...
...
@@ -282,13 +282,13 @@ Notice that using \\[next-error] or \\[compile-goto-error] modifies
(
": \\(.+\\): \\(?: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
))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment