1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-21 18:23:59 +00:00

Require 'cl when compiling.

This commit is contained in:
Andreas Schwab 2008-04-13 00:25:41 +00:00
parent 3ee7281cbb
commit f0d732ae65
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2008-04-13 Andreas Schwab <schwab@suse.de>
* progmodes/etags.el: Require 'cl when compiling.
2008-04-12 Nick Roberts <nickrob@snap.net.nz>
* progmodes/gud.el (gud-menu-map): Expand tooltip.

View File

@ -29,6 +29,8 @@
;;; Code:
(eval-when-compile
(require 'cl))
(require 'ring)
(require 'button)
@ -775,7 +777,7 @@ tags table and its (recursively) included tags tables."
(setq combined-table current-table))))
(message "Making tags completion table for %s...done"
buffer-file-name)
;; Cache the result a buffer-local variable.
;; Cache the result in a buffer-local variable.
(setq tags-completion-table combined-table))
(quit (message "Tags completion table construction aborted.")
(setq tags-completion-table nil)))))