summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorThien-Thi Nguyen <ttn@gnuvola.org>2007-08-31 01:59:20 +0000
committerThien-Thi Nguyen <ttn@gnuvola.org>2007-08-31 01:59:20 +0000
commit3b44dbc50ca405d93c8b4a11ede9573f23c240a2 (patch)
tree158951bbf0c76019603fc4d0e9d33946b6e6ab2c /lisp
parent550641d385b7d030294d9dbf407c7ce64702c8fa (diff)
downloademacs-3b44dbc50ca405d93c8b4a11ede9573f23c240a2.tar.gz
Require cl for compilation.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/calculator.el3
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 13b8eab1b31..6968d3183ee 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
+2007-08-31 Thien-Thi Nguyen <ttn@gnuvola.org>
+
+ * calculator.el: Require cl for compilation.
+
2007-08-30 Daniel Pfeiffer <occitan@esperanto.org>
* outline.el (outline-font-lock-levels): Comment out unused var.
diff --git a/lisp/calculator.el b/lisp/calculator.el
index 6f3c2a0e593..2676bedadba 100644
--- a/lisp/calculator.el
+++ b/lisp/calculator.el
@@ -5,7 +5,7 @@
;; Author: Eli Barzilay <eli@barzilay.org>
;; Keywords: tools, convenience
-;; Time-stamp: <2006-02-06 13:36:00 ttn>
+;; Time-stamp: <2007-08-31 03:00:11 ttn>
;; This file is part of GNU Emacs.
@@ -47,6 +47,7 @@
;;; History:
;; I hate history.
+(eval-when-compile (require 'cl))
(eval-and-compile
(if (fboundp 'defgroup) nil
(defmacro defgroup (&rest forms) nil)