aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuri Linkov2011-08-22 15:46:45 +0300
committerJuri Linkov2011-08-22 15:46:45 +0300
commit56ee679c7f363b2ea9caf070535c0696a3af7b66 (patch)
tree367e49170306d4ab90a8184ed65960953587f52e
parent262a14396ddccb01d20882345608e1f203cbe65b (diff)
downloademacs-56ee679c7f363b2ea9caf070535c0696a3af7b66.tar.gz
emacs-56ee679c7f363b2ea9caf070535c0696a3af7b66.zip
* lisp/progmodes/compile.el (compilation-mode-font-lock-keywords):
Revert regexp that highlights output switches to its old pre-2010-10-28 value and remove one `?' from it (bug#9319).
-rw-r--r--etc/compilation.txt15
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/progmodes/compile.el2
3 files changed, 17 insertions, 4 deletions
diff --git a/etc/compilation.txt b/etc/compilation.txt
index 888c1f94c33..2e452b58c8d 100644
--- a/etc/compilation.txt
+++ b/etc/compilation.txt
@@ -546,9 +546,18 @@ checking whether to build shared libraries... yes
546checking whether -lc should be explicitly linked in... (cached) no 546checking whether -lc should be explicitly linked in... (cached) no
547checking For GLIB - version >= 2.0.0... yes (version 2.1.0) 547checking For GLIB - version >= 2.0.0... yes (version 2.1.0)
548checking FONTCONFIG_CFLAGS... 548checking FONTCONFIG_CFLAGS...
549g++ -o foo.o foo.cc 549tool -o foo.o foo.c
550tool1 -output=foo foo.x 550tool -o=foo.o foo.c
551tool2 --outfile foo foo.y 551tool -output foo.o foo.c
552tool -output=foo.o foo.c
553tool -outfile foo.o foo.c
554tool -outfile=foo.o foo.c
555tool --output foo.o foo.c
556tool --output=foo.o foo.c
557tool --outfile foo.o foo.c
558tool --outfile=foo.o foo.c
559tool --omega foo.c
560tool --output-html-file foo.c
552 561
553Compilation started at Wed Jul 20 12:20:10 562Compilation started at Wed Jul 20 12:20:10
554Compilation interrupt at Wed Jul 20 12:20:10 563Compilation interrupt at Wed Jul 20 12:20:10
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index bfcbaa27b6f..4c7306174d6 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,9 @@
12011-08-22 Juri Linkov <juri@jurta.org> 12011-08-22 Juri Linkov <juri@jurta.org>
2 2
3 * progmodes/compile.el (compilation-mode-font-lock-keywords):
4 Revert regexp that highlights output switches to its old
5 pre-2010-10-28 value and remove one `?' from it (bug#9319).
6
3 * progmodes/grep.el (grep-process-setup): Use `buffer-modified-p' 7 * progmodes/grep.el (grep-process-setup): Use `buffer-modified-p'
4 to check for empty output (bug#9226). 8 to check for empty output (bug#9226).
5 9
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el
index 2fb0ac879b2..79fec080d57 100644
--- a/lisp/progmodes/compile.el
+++ b/lisp/progmodes/compile.el
@@ -523,7 +523,7 @@ you may also want to change `compilation-page-delimiter'.")
523 ;; Command output lines. Recognize `make[n]:' lines too. 523 ;; Command output lines. Recognize `make[n]:' lines too.
524 ("^\\([[:alnum:]_/.+-]+\\)\\(\\[\\([0-9]+\\)\\]\\)?[ \t]*:" 524 ("^\\([[:alnum:]_/.+-]+\\)\\(\\[\\([0-9]+\\)\\]\\)?[ \t]*:"
525 (1 font-lock-function-name-face) (3 compilation-line-face nil t)) 525 (1 font-lock-function-name-face) (3 compilation-line-face nil t))
526 (" -\\(?:o[= ]?\\|-\\(?:outfile\\|output\\)[= ]\\)\\(\\S +\\)" . 1) 526 (" --?o\\(?:utfile\\|utput\\)?[= ]\\(\\S +\\)" . 1)
527 ("^Compilation \\(finished\\).*" 527 ("^Compilation \\(finished\\).*"
528 (0 '(face nil compilation-message nil help-echo nil mouse-face nil) t) 528 (0 '(face nil compilation-message nil help-echo nil mouse-face nil) t)
529 (1 compilation-info-face)) 529 (1 compilation-info-face))