From: Glenn Morris Date: Sat, 21 Jun 2008 20:32:42 +0000 (+0000) Subject: Require 'cl when compiling. X-Git-Tag: emacs-pretest-23.0.90~4585 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9c8dd25e484dfea21a0750634056e507b94dffde;p=emacs.git Require 'cl when compiling. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 9739db2ad4e..d0c047e6de6 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -16,6 +16,8 @@ 2008-06-21 Glenn Morris + * nxml/nxml-mode.el: Require 'cl when compiling. + * progmodes/bug-reference.el (bug-reference-map): Bind down-mouse-1 rather than mouse-1. (bug-reference-url-format): Autoload safe if string. diff --git a/lisp/nxml/nxml-mode.el b/lisp/nxml/nxml-mode.el index af0b3c72eda..e4fa008f9aa 100644 --- a/lisp/nxml/nxml-mode.el +++ b/lisp/nxml/nxml-mode.el @@ -29,6 +29,8 @@ (when (featurep 'mucs) (error "nxml-mode is not compatible with Mule-UCS")) +(eval-when-compile (require 'cl)) ; for assert + (require 'xmltok) (require 'nxml-enc) (require 'nxml-glyph)