summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2008-06-21 20:32:42 +0000
committerGlenn Morris <rgm@gnu.org>2008-06-21 20:32:42 +0000
commit9c8dd25e484dfea21a0750634056e507b94dffde (patch)
tree16fe9536a83d02320fd46664f0e3fcdaac20e2cc
parent321d9c42c4496b1bdd444df79499673604396d7c (diff)
downloademacs-9c8dd25e484dfea21a0750634056e507b94dffde.tar.gz
Require 'cl when compiling.
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/nxml/nxml-mode.el2
2 files changed, 4 insertions, 0 deletions
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 <rgm@gnu.org>
+ * 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)