# HG changeset patch # User Andreas Schwab # Date 1208046341 0 # Node ID 58a4ed015d250bdcca63c86ea35f6dec033ee80a # Parent 7736bd7762c058f7597fbfb95b0e7d6bd58cf210 Require 'cl when compiling. diff -r 7736bd7762c0 -r 58a4ed015d25 lisp/ChangeLog --- 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 + + * progmodes/etags.el: Require 'cl when compiling. + 2008-04-12 Nick Roberts * progmodes/gud.el (gud-menu-map): Expand tooltip. diff -r 7736bd7762c0 -r 58a4ed015d25 lisp/progmodes/etags.el --- 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)))))