Mercurial > emacs
changeset 71106:44a7192990fe
(compilation-error-regexp-alist-alist::gcov-called-line):
Don't put face on `-' lines in gcov file. Suggested by Dan Nicolaescu.
author | Masatake YAMATO <jet@gyve.org> |
---|---|
date | Wed, 31 May 2006 07:21:10 +0000 |
parents | 8960b8875970 |
children | c2a4cb0acf5e |
files | lisp/ChangeLog lisp/progmodes/compile.el |
diffstat | 2 files changed, 7 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Wed May 31 02:10:40 2006 +0000 +++ b/lisp/ChangeLog Wed May 31 07:21:10 2006 +0000 @@ -1,3 +1,9 @@ +2006-05-31 Masatake YAMATO <jet@gyve.org> + + * progmodes/compile.el (compilation-error-regexp-alist-alist::gcov-called-line): + Don't put face on `-' lines in gcov file. + Suggested by Dan Nicolaescu. + 2006-05-31 Nick Roberts <nickrob@snap.net.nz> * progmodes/gud.el (gud-query-cmdline, gud-common-init): Revert
--- a/lisp/progmodes/compile.el Wed May 31 02:10:40 2006 +0000 +++ b/lisp/progmodes/compile.el Wed May 31 07:21:10 2006 +0000 @@ -300,7 +300,7 @@ "^ +\\(#####\\): +\\([0-9]+\\):.+$" nil 2 nil 2 nil (1 compilation-error-face)) (gcov-called-line - "^ +[-0-9]+: +\\([1-9]\\|[0-9]\\{2,\\}\\):.*$" nil 1 nil 0) + "^ *[0-9]+: +\\([1-9]\\|[0-9]\\{2,\\}\\):.*$" nil 1 nil 0) ) "Alist of values for `compilation-error-regexp-alist'.")