diff options
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/progmodes/cperl-mode.el | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index f559521f274..6a5667cb356 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2006-11-11 Romain Francoise <romain@orebokech.com> | ||
| 2 | |||
| 3 | * progmodes/cperl-mode.el (cperl-mode): Before adding to it, make | ||
| 4 | `compilation-error-regexp-alist' buffer-local, since we changed | ||
| 5 | `compilation-error-regexp-alist-alist' locally. | ||
| 6 | |||
| 1 | 2006-11-11 Juanma Barranquero <lekktu@gmail.com> | 7 | 2006-11-11 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 8 | ||
| 3 | * server.el (server-visit-files): Bind `minibuffer-auto-raise' | 9 | * server.el (server-visit-files): Bind `minibuffer-auto-raise' |
diff --git a/lisp/progmodes/cperl-mode.el b/lisp/progmodes/cperl-mode.el index 26bbb8f3faf..983087d07bc 100644 --- a/lisp/progmodes/cperl-mode.el +++ b/lisp/progmodes/cperl-mode.el | |||
| @@ -1783,6 +1783,7 @@ or as help on variables `cperl-tips', `cperl-problems', | |||
| 1783 | (if (fboundp 'compilation-build-compilation-error-regexp-alist) | 1783 | (if (fboundp 'compilation-build-compilation-error-regexp-alist) |
| 1784 | (let ((f 'compilation-build-compilation-error-regexp-alist)) | 1784 | (let ((f 'compilation-build-compilation-error-regexp-alist)) |
| 1785 | (funcall f)) | 1785 | (funcall f)) |
| 1786 | (make-local-variable 'compilation-error-regexp-alist) | ||
| 1786 | (push 'cperl compilation-error-regexp-alist))) | 1787 | (push 'cperl compilation-error-regexp-alist))) |
| 1787 | ((boundp 'compilation-error-regexp-alist);; xmeacs 19.x | 1788 | ((boundp 'compilation-error-regexp-alist);; xmeacs 19.x |
| 1788 | (make-local-variable 'compilation-error-regexp-alist) | 1789 | (make-local-variable 'compilation-error-regexp-alist) |