]> git.eshelyaron.com Git - emacs.git/commitdiff
compilation-mode-font-lock-keywords tweak
authorSimon Marshall <simon@gnu.org>
Thu, 9 Nov 1995 08:20:16 +0000 (08:20 +0000)
committerSimon Marshall <simon@gnu.org>
Thu, 9 Nov 1995 08:20:16 +0000 (08:20 +0000)
lisp/progmodes/compile.el

index 508283ca7409887e6645c270b875f4d8838d1cb3..92149e4ac8d75c290176763e46ac2a8b1955db3b 100644 (file)
@@ -269,7 +269,8 @@ strings to write into the compilation buffer, and to put in its mode line.")
 (defvar grep-history nil)
 
 (defvar compilation-mode-font-lock-keywords
-  '(("^\\([^\n:]*:\\([0-9]+:\\)+\\)\\(.*\\)$" 1 font-lock-function-name-face))
+  ;; This regexp needs a bit of rewriting.  What is the third grouping for?
+  '(("^\\([^ \n:]*:\\([0-9]+:\\)+\\)\\(.*\\)$" 1 font-lock-function-name-face))
 ;;;  ("^\\([^\n:]*:\\([0-9]+:\\)+\\)\\(.*\\)$" 0 font-lock-keyword-face keep)
   "Additional expressions to highlight in Compilation mode.")
 \f