aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Marshall1995-11-09 08:20:16 +0000
committerSimon Marshall1995-11-09 08:20:16 +0000
commitc81b38d300e90d03acee57daa0b2cbd9ce2944bf (patch)
tree744309eb04612a79dd6b83d851e61ceb9bf11b32
parent2cc1905e48e720518e7c094107b8875856459467 (diff)
downloademacs-c81b38d300e90d03acee57daa0b2cbd9ce2944bf.tar.gz
emacs-c81b38d300e90d03acee57daa0b2cbd9ce2944bf.zip
compilation-mode-font-lock-keywords tweak
-rw-r--r--lisp/progmodes/compile.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el
index 508283ca740..92149e4ac8d 100644
--- a/lisp/progmodes/compile.el
+++ b/lisp/progmodes/compile.el
@@ -269,7 +269,8 @@ strings to write into the compilation buffer, and to put in its mode line.")
269(defvar grep-history nil) 269(defvar grep-history nil)
270 270
271(defvar compilation-mode-font-lock-keywords 271(defvar compilation-mode-font-lock-keywords
272 '(("^\\([^\n:]*:\\([0-9]+:\\)+\\)\\(.*\\)$" 1 font-lock-function-name-face)) 272 ;; This regexp needs a bit of rewriting. What is the third grouping for?
273 '(("^\\([^ \n:]*:\\([0-9]+:\\)+\\)\\(.*\\)$" 1 font-lock-function-name-face))
273;;; ("^\\([^\n:]*:\\([0-9]+:\\)+\\)\\(.*\\)$" 0 font-lock-keyword-face keep) 274;;; ("^\\([^\n:]*:\\([0-9]+:\\)+\\)\\(.*\\)$" 0 font-lock-keyword-face keep)
274 "Additional expressions to highlight in Compilation mode.") 275 "Additional expressions to highlight in Compilation mode.")
275 276