changeset 13439:c38b7ee76ecc

compilation-mode-font-lock-keywords tweak
author Simon Marshall <simon@gnu.org>
date Thu, 09 Nov 1995 08:20:16 +0000
parents 705eb8c3d935
children e8cd2c9309c8
files lisp/progmodes/compile.el
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/progmodes/compile.el	Tue Nov 07 07:58:00 1995 +0000
+++ b/lisp/progmodes/compile.el	Thu Nov 09 08:20:16 1995 +0000
@@ -269,7 +269,8 @@
 (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.")