diff options
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/progmodes/compile.el | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index 83efb3e0295..50370a4f3ac 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el | |||
| @@ -274,6 +274,12 @@ of[ \t]+\"?\\([a-zA-Z]?:?[^\":\n]+\\)\"?:" 3 2 nil (1)) | |||
| 274 | (ruby-Test::Unit | 274 | (ruby-Test::Unit |
| 275 | "^[\t ]*\\[\\([^(].*\\):\\([1-9][0-9]*\\)\\(\\]\\)?:in " 1 2) | 275 | "^[\t ]*\\[\\([^(].*\\):\\([1-9][0-9]*\\)\\(\\]\\)?:in " 1 2) |
| 276 | 276 | ||
| 277 | (gmake | ||
| 278 | ;; Set GNU make error messages as INFO level. | ||
| 279 | ;; It starts with the name of the make program which is variable, | ||
| 280 | ;; so don't try to match it. | ||
| 281 | ": \\*\\*\\* \\[\\(\\(.+?\\):\\([0-9]+\\): .+\\)\\]" 2 3 nil 0 1) | ||
| 282 | |||
| 277 | (gnu | 283 | (gnu |
| 278 | ;; The first line matches the program name for | 284 | ;; The first line matches the program name for |
| 279 | 285 | ||