# HG changeset patch # User Stefan Monnier # Date 1288228222 14400 # Node ID 4c19a062df30ca08b98729d95593e8d0fcce9750 # Parent c1bfed865afd367ff1787bce58447f98a1131793 * lisp/progmodes/compile.el (compilation-mode-font-lock-keywords): Don't confuse -omega as "-o mega". diff -r c1bfed865afd -r 4c19a062df30 lisp/ChangeLog --- a/lisp/ChangeLog Wed Oct 27 22:08:36 2010 +0000 +++ b/lisp/ChangeLog Wed Oct 27 21:10:22 2010 -0400 @@ -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 -r c1bfed865afd -r 4c19a062df30 lisp/progmodes/compile.el --- a/lisp/progmodes/compile.el Wed Oct 27 22:08:36 2010 +0000 +++ b/lisp/progmodes/compile.el Wed Oct 27 21:10:22 2010 -0400 @@ -543,7 +543,7 @@ ;; 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))