diff options
| -rw-r--r-- | lisp/progmodes/compile.el | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index b41cc601fe7..9ac3aa5709d 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el | |||
| @@ -70,6 +70,12 @@ | |||
| 70 | 70 | ||
| 71 | (eval-when-compile (require 'cl)) | 71 | (eval-when-compile (require 'cl)) |
| 72 | 72 | ||
| 73 | (defvar font-lock-extra-managed-props) | ||
| 74 | (defvar font-lock-keywords) | ||
| 75 | (defvar font-lock-maximum-size) | ||
| 76 | (defvar font-lock-support-mode) | ||
| 77 | |||
| 78 | |||
| 73 | (defgroup compilation nil | 79 | (defgroup compilation nil |
| 74 | "Run compiler as inferior of Emacs, parse error messages." | 80 | "Run compiler as inferior of Emacs, parse error messages." |
| 75 | :group 'tools | 81 | :group 'tools |
| @@ -287,11 +293,11 @@ File = \\(.+\\), Line = \\([0-9]+\\)\\(?:, Column = \\([0-9]+\\)\\)?" | |||
| 287 | \\(?:: \\(warning:\\)?\\|$\\| ),\\)" 1 2 nil (3)) | 293 | \\(?:: \\(warning:\\)?\\|$\\| ),\\)" 1 2 nil (3)) |
| 288 | 294 | ||
| 289 | (gcov-file | 295 | (gcov-file |
| 290 | "^ +-: \\(0\\):Source:\\(.+\\)$" 2 1 nil 0) | 296 | "^ +-: \\(0\\):Source:\\(.+\\)$" 2 1 nil 0) |
| 291 | (gcov-bb-file | 297 | (gcov-bb-file |
| 292 | "^ +-: \\(0\\):Object:\\(?:.+\\)$" nil 1 nil 0) | 298 | "^ +-: \\(0\\):Object:\\(?:.+\\)$" nil 1 nil 0) |
| 293 | (gcov-never-called-line | 299 | (gcov-never-called-line |
| 294 | "^ +\\(#####\\): +\\([0-9]+\\):.+$" nil 2 nil 2 nil | 300 | "^ +\\(#####\\): +\\([0-9]+\\):.+$" nil 2 nil 2 nil |
| 295 | (1 compilation-error-face)) | 301 | (1 compilation-error-face)) |
| 296 | (gcov-called-line | 302 | (gcov-called-line |
| 297 | "^ +[-0-9]+: +\\([1-9]\\|[0-9]\\{2,\\}\\):.*$" nil 1 nil 0) | 303 | "^ +[-0-9]+: +\\([1-9]\\|[0-9]\\{2,\\}\\):.*$" nil 1 nil 0) |