(compilation-error-regexp-alist-alist::gcov-called-line):

Don't put face on `-' lines in gcov file. Suggested by Dan Nicolaescu.
This commit is contained in:
Masatake YAMATO 2006-05-31 07:21:10 +00:00
parent 3510285a59
commit 206e215ecd
2 changed files with 7 additions and 1 deletions

View file

@ -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

View file

@ -300,7 +300,7 @@ File = \\(.+\\), Line = \\([0-9]+\\)\\(?:, Column = \\([0-9]+\\)\\)?"
"^ +\\(#####\\): +\\([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'.")