aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes
diff options
context:
space:
mode:
authorAndreas Schwab2008-04-13 00:25:41 +0000
committerAndreas Schwab2008-04-13 00:25:41 +0000
commitf0d732ae65927cbb3bd17cef564508de0064509c (patch)
tree59d445668b4a624405e9e21557c804367cf6816c /lisp/progmodes
parent3ee7281cbb63a1c8dc1b9c32a4692cd155ed7bff (diff)
downloademacs-f0d732ae65927cbb3bd17cef564508de0064509c.tar.gz
emacs-f0d732ae65927cbb3bd17cef564508de0064509c.zip
Require 'cl when compiling.
Diffstat (limited to 'lisp/progmodes')
-rw-r--r--lisp/progmodes/etags.el4
1 files changed, 3 insertions, 1 deletions
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)))))