diff options
Diffstat (limited to 'lisp/progmodes/compile.el')
| -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 4194d363a3d..f6c43e2c392 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el | |||
| @@ -1280,7 +1280,7 @@ to `compilation-error-regexp-alist' if RULES is nil." | |||
| 1280 | ;; whether or not omake's own error messages are recognized. | 1280 | ;; whether or not omake's own error messages are recognized. |
| 1281 | (cond | 1281 | (cond |
| 1282 | ((not (memq 'omake compilation-error-regexp-alist)) nil) | 1282 | ((not (memq 'omake compilation-error-regexp-alist)) nil) |
| 1283 | ((string-match "\\`\\([^^]\\|^\\( \\*\\|\\[\\)\\)" pat) | 1283 | ((string-match "\\`\\([^^]\\|\\^\\( \\*\\|\\[\\)\\)" pat) |
| 1284 | nil) ;; Not anchored or anchored but already allows empty spaces. | 1284 | nil) ;; Not anchored or anchored but already allows empty spaces. |
| 1285 | (t (setq pat (concat "^ *" (substring pat 1))))) | 1285 | (t (setq pat (concat "^ *" (substring pat 1))))) |
| 1286 | 1286 | ||