diff options
| author | Glenn Morris | 2008-06-21 20:32:42 +0000 |
|---|---|---|
| committer | Glenn Morris | 2008-06-21 20:32:42 +0000 |
| commit | 9c8dd25e484dfea21a0750634056e507b94dffde (patch) | |
| tree | 16fe9536a83d02320fd46664f0e3fcdaac20e2cc | |
| parent | 321d9c42c4496b1bdd444df79499673604396d7c (diff) | |
| download | emacs-9c8dd25e484dfea21a0750634056e507b94dffde.tar.gz emacs-9c8dd25e484dfea21a0750634056e507b94dffde.zip | |
Require 'cl when compiling.
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/nxml/nxml-mode.el | 2 |
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 @@ | |||
| 16 | 16 | ||
| 17 | 2008-06-21 Glenn Morris <rgm@gnu.org> | 17 | 2008-06-21 Glenn Morris <rgm@gnu.org> |
| 18 | 18 | ||
| 19 | * nxml/nxml-mode.el: Require 'cl when compiling. | ||
| 20 | |||
| 19 | * progmodes/bug-reference.el (bug-reference-map): Bind down-mouse-1 | 21 | * progmodes/bug-reference.el (bug-reference-map): Bind down-mouse-1 |
| 20 | rather than mouse-1. | 22 | rather than mouse-1. |
| 21 | (bug-reference-url-format): Autoload safe if string. | 23 | (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 @@ | |||
| 29 | (when (featurep 'mucs) | 29 | (when (featurep 'mucs) |
| 30 | (error "nxml-mode is not compatible with Mule-UCS")) | 30 | (error "nxml-mode is not compatible with Mule-UCS")) |
| 31 | 31 | ||
| 32 | (eval-when-compile (require 'cl)) ; for assert | ||
| 33 | |||
| 32 | (require 'xmltok) | 34 | (require 'xmltok) |
| 33 | (require 'nxml-enc) | 35 | (require 'nxml-enc) |
| 34 | (require 'nxml-glyph) | 36 | (require 'nxml-glyph) |