diff options
| author | Andreas Schwab | 2008-04-13 00:25:41 +0000 |
|---|---|---|
| committer | Andreas Schwab | 2008-04-13 00:25:41 +0000 |
| commit | f0d732ae65927cbb3bd17cef564508de0064509c (patch) | |
| tree | 59d445668b4a624405e9e21557c804367cf6816c | |
| parent | 3ee7281cbb63a1c8dc1b9c32a4692cd155ed7bff (diff) | |
| download | emacs-f0d732ae65927cbb3bd17cef564508de0064509c.tar.gz emacs-f0d732ae65927cbb3bd17cef564508de0064509c.zip | |
Require 'cl when compiling.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/progmodes/etags.el | 4 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index e0bd01cf0cb..d369eb8cbf4 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2008-04-13 Andreas Schwab <schwab@suse.de> | ||
| 2 | |||
| 3 | * progmodes/etags.el: Require 'cl when compiling. | ||
| 4 | |||
| 1 | 2008-04-12 Nick Roberts <nickrob@snap.net.nz> | 5 | 2008-04-12 Nick Roberts <nickrob@snap.net.nz> |
| 2 | 6 | ||
| 3 | * progmodes/gud.el (gud-menu-map): Expand tooltip. | 7 | * progmodes/gud.el (gud-menu-map): Expand tooltip. |
diff --git a/lisp/progmodes/etags.el b/lisp/progmodes/etags.el index 88e62b4ec85..5273c685a17 100644 --- a/lisp/progmodes/etags.el +++ b/lisp/progmodes/etags.el | |||
| @@ -29,6 +29,8 @@ | |||
| 29 | 29 | ||
| 30 | ;;; Code: | 30 | ;;; Code: |
| 31 | 31 | ||
| 32 | (eval-when-compile | ||
| 33 | (require 'cl)) | ||
| 32 | (require 'ring) | 34 | (require 'ring) |
| 33 | (require 'button) | 35 | (require 'button) |
| 34 | 36 | ||
| @@ -775,7 +777,7 @@ tags table and its (recursively) included tags tables." | |||
| 775 | (setq combined-table current-table)))) | 777 | (setq combined-table current-table)))) |
| 776 | (message "Making tags completion table for %s...done" | 778 | (message "Making tags completion table for %s...done" |
| 777 | buffer-file-name) | 779 | buffer-file-name) |
| 778 | ;; Cache the result a buffer-local variable. | 780 | ;; Cache the result in a buffer-local variable. |
| 779 | (setq tags-completion-table combined-table)) | 781 | (setq tags-completion-table combined-table)) |
| 780 | (quit (message "Tags completion table construction aborted.") | 782 | (quit (message "Tags completion table construction aborted.") |
| 781 | (setq tags-completion-table nil))))) | 783 | (setq tags-completion-table nil))))) |