From 77b143ebc1100462cd6b9be6b92db91c35eb5f5d Mon Sep 17 00:00:00 2001 From: Jes Bodi Klinke Date: Wed, 27 Oct 2010 21:10:22 -0400 Subject: [PATCH] * lisp/progmodes/compile.el (compilation-mode-font-lock-keywords): Don't confuse -omega as "-o mega". --- lisp/ChangeLog | 5 +++++ lisp/progmodes/compile.el | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 8d77f0159f9..9150d39848f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2010-10-28 Jes Bodi Klinke + + * progmodes/compile.el (compilation-mode-font-lock-keywords): + Don't confuse -omega as "-o mega". + 2010-10-27 Stefan Monnier * vc/log-edit.el (log-edit-rewrite-fixes): New var. diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index a335f3dd427..dd30212085e 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el @@ -543,7 +543,7 @@ you may also want to change `compilation-page-delimiter'.") ;; Command output lines. Recognize `make[n]:' lines too. ("^\\([[:alnum:]_/.+-]+\\)\\(\\[\\([0-9]+\\)\\]\\)?[ \t]*:" (1 font-lock-function-name-face) (3 compilation-line-face nil t)) - (" --?o\\(?:utfile\\|utput\\)?[= ]?\\(\\S +\\)" . 1) + (" -\\(?:o[= ]?\\|-\\(?:outfile\\|output\\)[= ]\\)\\(\\S +\\)" . 1) ("^Compilation \\(finished\\).*" (0 '(face nil message nil help-echo nil mouse-face nil) t) (1 compilation-info-face)) -- 2.39.2