mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-24 05:47:36 +00:00
(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:
parent
3510285a59
commit
206e215ecd
2 changed files with 7 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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'.")
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue