mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-30 04:10:54 -08:00
* lisp/progmodes/compile.el (compilation-parse-errors): Fix typo.
Fixes: debbugs:13369
This commit is contained in:
parent
236a8f0cc0
commit
06364e6463
2 changed files with 6 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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)))))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue