diff options
| author | Tobias Bading | 2019-02-25 14:26:38 +0100 |
|---|---|---|
| committer | Eli Zaretskii | 2019-03-01 12:06:06 +0200 |
| commit | 560c84b62b346e1ce6edc0a334cdbfaa37de7884 (patch) | |
| tree | 2ccbcce451900187313d54ccbc1c304c426e4d4b | |
| parent | 1dff09739346037a588a3b9290800c09a9b3409a (diff) | |
| download | emacs-560c84b62b346e1ce6edc0a334cdbfaa37de7884.tar.gz emacs-560c84b62b346e1ce6edc0a334cdbfaa37de7884.zip | |
Fix last change on 'compilation-parse-errors'
* lisp/progmodes/compile.el (compilation-parse-errors): Fix
previous change in this function. (Bug#34479)
Copyright-paperwork-exempt: yes
| -rw-r--r-- | lisp/progmodes/compile.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index 5312a55a258..49b79de5851 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el | |||
| @@ -1432,7 +1432,7 @@ to `compilation-error-regexp-alist' if RULES is nil." | |||
| 1432 | (let ((this-type (if (consp type) | 1432 | (let ((this-type (if (consp type) |
| 1433 | (compilation-type type) | 1433 | (compilation-type type) |
| 1434 | (or type 2)))) | 1434 | (or type 2)))) |
| 1435 | (compilation--note-type type) | 1435 | (compilation--note-type this-type) |
| 1436 | 1436 | ||
| 1437 | (compilation--put-prop | 1437 | (compilation--put-prop |
| 1438 | file 'font-lock-face | 1438 | file 'font-lock-face |