]> code.delx.au - gnu-emacs/commitdiff
* lisp/progmodes/compile.el (compilation-parse-errors): Fix typo.
authorGlenn Morris <rgm@gnu.org>
Mon, 7 Jan 2013 01:23:26 +0000 (17:23 -0800)
committerGlenn Morris <rgm@gnu.org>
Mon, 7 Jan 2013 01:23:26 +0000 (17:23 -0800)
Fixes: debbugs:13369
lisp/ChangeLog
lisp/progmodes/compile.el

index 54ce07b1fb21e0ac927661977d5a1894d23a26af..1d04542572025d489593bc987e320d1fb1439333 100644 (file)
@@ -1,3 +1,8 @@
+2013-01-07  Glenn Morris  <rgm@gnu.org>
+
+       * progmodes/compile.el (compilation-parse-errors):
+       Fix typo.  (Bug#13369)
+
 2013-01-07  Vitalie Spinu  <spinuvit@gmail.com>  (tiny change)
 
        * comint.el (comint-send-input): Check size of buffer before
index 9fffeaaabe2c575be440d11a1c0a20791023f76b..f383e02bc7fce6e339f3d1474ed4ecb56c98f0b2 100644 (file)
@@ -1280,7 +1280,7 @@ to `compilation-error-regexp-alist' if RULES is nil."
       ;; whether or not omake's own error messages are recognized.
       (cond
        ((not (memq 'omake compilation-error-regexp-alist)) nil)
-       ((string-match "\\`\\([^^]\\|^\\( \\*\\|\\[\\)\\)" pat)
+       ((string-match "\\`\\([^^]\\|\\^\\( \\*\\|\\[\\)\\)" pat)
         nil) ;; Not anchored or anchored but already allows empty spaces.
        (t (setq pat (concat "^ *" (substring pat 1)))))