diff options
| author | Sam Steingold | 2009-07-20 16:40:24 +0000 |
|---|---|---|
| committer | Sam Steingold | 2009-07-20 16:40:24 +0000 |
| commit | 6bb90094fb48c45c2b179c0dafb44e5f081962e4 (patch) | |
| tree | 1c780ceab9390009928dfa6e3b56221dd2b96ca3 | |
| parent | 42e0a72551dbe075ed0a1bd59098f2191926b59e (diff) | |
| download | emacs-6bb90094fb48c45c2b179c0dafb44e5f081962e4.tar.gz emacs-6bb90094fb48c45c2b179c0dafb44e5f081962e4.zip | |
(compile-auto-highlight): Remove the variable (removed from compile.el
on 2004-03-11).
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/progmodes/ada-mode.el | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 2e7ad522a56..49739a57ebd 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2009-07-20 Sam Steingold <sds@gnu.org> | ||
| 2 | |||
| 3 | * progmodes/ada-mode.el (compile-auto-highlight): Remove the | ||
| 4 | variable (removed from compile.el on 2004-03-11). | ||
| 5 | |||
| 1 | 2009-07-20 Chong Yidong <cyd@stupidchicken.com> | 6 | 2009-07-20 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 7 | ||
| 3 | * files.el (hack-local-variables-filter): Fix last change. | 8 | * files.el (hack-local-variables-filter): Fix last change. |
diff --git a/lisp/progmodes/ada-mode.el b/lisp/progmodes/ada-mode.el index 5750fd9da2b..c28926dbb3d 100644 --- a/lisp/progmodes/ada-mode.el +++ b/lisp/progmodes/ada-mode.el | |||
| @@ -128,7 +128,6 @@ | |||
| 128 | (require 'which-func nil t) | 128 | (require 'which-func nil t) |
| 129 | (require 'compile nil t) | 129 | (require 'compile nil t) |
| 130 | 130 | ||
| 131 | (defvar compile-auto-highlight) | ||
| 132 | (defvar ispell-check-comments) | 131 | (defvar ispell-check-comments) |
| 133 | (defvar skeleton-further-elements) | 132 | (defvar skeleton-further-elements) |
| 134 | 133 | ||
| @@ -1160,7 +1159,6 @@ the file name." | |||
| 1160 | ;; We just substitute our own functions to go to the error. | 1159 | ;; We just substitute our own functions to go to the error. |
| 1161 | (add-hook 'compilation-mode-hook | 1160 | (add-hook 'compilation-mode-hook |
| 1162 | (lambda() | 1161 | (lambda() |
| 1163 | (set (make-local-variable 'compile-auto-highlight) 40) | ||
| 1164 | ;; FIXME: This has global impact! -stef | 1162 | ;; FIXME: This has global impact! -stef |
| 1165 | (define-key compilation-minor-mode-map [mouse-2] | 1163 | (define-key compilation-minor-mode-map [mouse-2] |
| 1166 | 'ada-compile-mouse-goto-error) | 1164 | 'ada-compile-mouse-goto-error) |