emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r102131: * lisp/progmodes/compile.el


From: Stefan Monnier
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r102131: * lisp/progmodes/compile.el (compilation-mode-font-lock-keywords):
Date: Wed, 27 Oct 2010 21:10:22 -0400
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 102131
author: Jes Bodi Klinke <address@hidden>
committer: Stefan Monnier <address@hidden>
branch nick: trunk
timestamp: Wed 2010-10-27 21:10:22 -0400
message:
  * lisp/progmodes/compile.el (compilation-mode-font-lock-keywords):
  Don't confuse -omega as "-o mega".
modified:
  lisp/ChangeLog
  lisp/progmodes/compile.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2010-10-27 21:47:09 +0000
+++ b/lisp/ChangeLog    2010-10-28 01:10:22 +0000
@@ -1,3 +1,8 @@
+2010-10-28  Jes Bodi Klinke  <address@hidden>
+
+       * progmodes/compile.el (compilation-mode-font-lock-keywords):
+       Don't confuse -omega as "-o mega".
+
 2010-10-27  Stefan Monnier  <address@hidden>
 
        * vc/log-edit.el (log-edit-rewrite-fixes): New var.

=== modified file 'lisp/progmodes/compile.el'
--- a/lisp/progmodes/compile.el 2010-09-24 03:06:33 +0000
+++ b/lisp/progmodes/compile.el 2010-10-28 01:10:22 +0000
@@ -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))


reply via email to

[Prev in Thread] Current Thread [Next in Thread]