diff options
| author | Masatake YAMATO | 2006-05-31 07:21:10 +0000 |
|---|---|---|
| committer | Masatake YAMATO | 2006-05-31 07:21:10 +0000 |
| commit | 206e215ecd2d836cf105007bbeb330c7b36980ec (patch) | |
| tree | a1f134637944a8857b95c1ddfa97301cbde8362f | |
| parent | 3510285a5930f820d79ef381453bd75efda1105e (diff) | |
| download | emacs-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/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/progmodes/compile.el | 2 |
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 @@ | |||
| 1 | 2006-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 | |||
| 1 | 2006-05-31 Nick Roberts <nickrob@snap.net.nz> | 7 | 2006-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 | ||