Mercurial > emacs
changeset 94053:58a4ed015d25
Require 'cl when compiling.
author | Andreas Schwab <schwab@suse.de> |
---|---|
date | Sun, 13 Apr 2008 00:25:41 +0000 |
parents | 7736bd7762c0 |
children | 41482de59a50 |
files | lisp/ChangeLog lisp/progmodes/etags.el |
diffstat | 2 files changed, 7 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Sat Apr 12 22:04:38 2008 +0000 +++ b/lisp/ChangeLog Sun Apr 13 00:25:41 2008 +0000 @@ -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.
--- a/lisp/progmodes/etags.el Sat Apr 12 22:04:38 2008 +0000 +++ b/lisp/progmodes/etags.el Sun Apr 13 00:25:41 2008 +0000 @@ -29,6 +29,8 @@ ;;; Code: +(eval-when-compile + (require 'cl)) (require 'ring) (require 'button) @@ -775,7 +777,7 @@ (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)))))