# HG changeset patch # User Simon Marshall # Date 815905216 0 # Node ID c38b7ee76ecc264efe753b81a585b7f0ebc8b35e # Parent 705eb8c3d93557b532110d11b5d1d3570ec1c6ef compilation-mode-font-lock-keywords tweak diff -r 705eb8c3d935 -r c38b7ee76ecc lisp/progmodes/compile.el --- 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.")