]> git.eshelyaron.com Git - emacs.git/commitdiff
(grep-match-face): New defvar.
authorJuri Linkov <juri@jurta.org>
Thu, 16 Dec 2004 07:16:44 +0000 (07:16 +0000)
committerJuri Linkov <juri@jurta.org>
Thu, 16 Dec 2004 07:16:44 +0000 (07:16 +0000)
(grep-mode-font-lock-keywords): Use grep-match-face instead of
compilation-column-face to highlight grep matches.

lisp/progmodes/grep.el

index fd4b716ae4b48dd4e8d712b59a3a9bc253cc9310..04fcae78ea64e07ff5536c3e6f28a053ba9b5890 100644 (file)
@@ -275,6 +275,9 @@ Notice that using \\[next-error] or \\[compile-goto-error] modifies
 (defvar grep-error-face        compilation-error-face
   "Face name to use for grep error messages.")
 
+(defvar grep-match-face        'match
+  "Face name to use for grep matches.")
+
 (defvar grep-mode-font-lock-keywords
    '(;; Command output lines.
      ("^\\([A-Za-z_0-9/\.+-]+\\)[ \t]*:" 1 font-lock-function-name-face)
@@ -291,7 +294,7 @@ Notice that using \\[next-error] or \\[compile-goto-error] modifies
       (2 compilation-line-face))
      ;; Highlight grep matches and delete markers
      ("\\(\033\\[01;41m\\)\\(.*?\\)\\(\033\\[00m\\)"
-      (2 compilation-column-face)
+      (2 grep-match-face)
       ((lambda (p))
        (progn
         ;; Delete markers with `replace-match' because it updates