aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMasatake YAMATO2006-05-31 07:21:10 +0000
committerMasatake YAMATO2006-05-31 07:21:10 +0000
commit206e215ecd2d836cf105007bbeb330c7b36980ec (patch)
treea1f134637944a8857b95c1ddfa97301cbde8362f
parent3510285a5930f820d79ef381453bd75efda1105e (diff)
downloademacs-206e215ecd2d836cf105007bbeb330c7b36980ec.tar.gz
emacs-206e215ecd2d836cf105007bbeb330c7b36980ec.zip
(compilation-error-regexp-alist-alist::gcov-called-line):
Don't put face on `-' lines in gcov file. Suggested by Dan Nicolaescu.
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/progmodes/compile.el2
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 1b36d520c64..31bb11e76cc 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
12006-05-31 Masatake YAMATO <jet@gyve.org>
2
3 * progmodes/compile.el (compilation-error-regexp-alist-alist::gcov-called-line):
4 Don't put face on `-' lines in gcov file.
5 Suggested by Dan Nicolaescu.
6
12006-05-31 Nick Roberts <nickrob@snap.net.nz> 72006-05-31 Nick Roberts <nickrob@snap.net.nz>
2 8
3 * progmodes/gud.el (gud-query-cmdline, gud-common-init): Revert 9 * progmodes/gud.el (gud-query-cmdline, gud-common-init): Revert
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el
index 799f108146f..1649a2533ba 100644
--- a/lisp/progmodes/compile.el
+++ b/lisp/progmodes/compile.el
@@ -300,7 +300,7 @@ File = \\(.+\\), Line = \\([0-9]+\\)\\(?:, Column = \\([0-9]+\\)\\)?"
300 "^ +\\(#####\\): +\\([0-9]+\\):.+$" nil 2 nil 2 nil 300 "^ +\\(#####\\): +\\([0-9]+\\):.+$" nil 2 nil 2 nil
301 (1 compilation-error-face)) 301 (1 compilation-error-face))
302 (gcov-called-line 302 (gcov-called-line
303 "^ +[-0-9]+: +\\([1-9]\\|[0-9]\\{2,\\}\\):.*$" nil 1 nil 0) 303 "^ *[0-9]+: +\\([1-9]\\|[0-9]\\{2,\\}\\):.*$" nil 1 nil 0)
304) 304)
305 "Alist of values for `compilation-error-regexp-alist'.") 305 "Alist of values for `compilation-error-regexp-alist'.")
306 306