diff options
| author | Glenn Morris | 2013-01-06 17:23:26 -0800 |
|---|---|---|
| committer | Glenn Morris | 2013-01-06 17:23:26 -0800 |
| commit | 06364e6463b654038ca3290fec6a37d1ca69700c (patch) | |
| tree | 8967782f93afb605c8d83b551076251133cab147 | |
| parent | 236a8f0cc08f7393b606e31041e12f04c8d4b517 (diff) | |
| download | emacs-06364e6463b654038ca3290fec6a37d1ca69700c.tar.gz emacs-06364e6463b654038ca3290fec6a37d1ca69700c.zip | |
* lisp/progmodes/compile.el (compilation-parse-errors): Fix typo.
Fixes: debbugs:13369
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/progmodes/compile.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 54ce07b1fb2..1d045425720 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2013-01-07 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * progmodes/compile.el (compilation-parse-errors): | ||
| 4 | Fix typo. (Bug#13369) | ||
| 5 | |||
| 1 | 2013-01-07 Vitalie Spinu <spinuvit@gmail.com> (tiny change) | 6 | 2013-01-07 Vitalie Spinu <spinuvit@gmail.com> (tiny change) |
| 2 | 7 | ||
| 3 | * comint.el (comint-send-input): Check size of buffer before | 8 | * comint.el (comint-send-input): Check size of buffer before |
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index 9fffeaaabe2..f383e02bc7f 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 | ||