aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorLuc Teirlinck2004-01-16 01:48:11 +0000
committerLuc Teirlinck2004-01-16 01:48:11 +0000
commit3e7274ae13f33317b965f0faafcde11a26c75ecf (patch)
tree936ec384b97a51c1ac20764a79938a589fa290e2 /lisp
parent637692f4345117fc4c226ae2529d40097c258775 (diff)
downloademacs-3e7274ae13f33317b965f0faafcde11a26c75ecf.tar.gz
emacs-3e7274ae13f33317b965f0faafcde11a26c75ecf.zip
*** empty log message ***
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/emacs-lisp/cl.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index bcef05f4f1f..22cb44249a3 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12004-01-15 Luc Teirlinck <teirllm@auburn.edu>
2
3 * emacs-lisp/cl.el (declare): Add `fmakunbound' for `declare'.
4 * subr.el (declare): New macro.
5
12004-01-15 Thien-Thi Nguyen <ttn@gnu.org> 62004-01-15 Thien-Thi Nguyen <ttn@gnu.org>
2 7
3 * progmodes/scheme.el (scheme-font-lock-keywords-2): Add "force". 8 * progmodes/scheme.el (scheme-font-lock-keywords-2): Add "force".
diff --git a/lisp/emacs-lisp/cl.el b/lisp/emacs-lisp/cl.el
index b3e56937c60..b8d9cd5e80c 100644
--- a/lisp/emacs-lisp/cl.el
+++ b/lisp/emacs-lisp/cl.el
@@ -579,7 +579,7 @@ Keywords supported: :test :test-not :key"
579 "Non-nil means don't make CL functions autoload.") 579 "Non-nil means don't make CL functions autoload.")
580 580
581;;; Autoload the other portions of the package. 581;;; Autoload the other portions of the package.
582;; We want to replace the basic versions of dolist, dotimes below. 582;; We want to replace the basic versions of dolist, dotimes, declare below.
583(fmakunbound 'dolist) 583(fmakunbound 'dolist)
584(fmakunbound 'dotimes) 584(fmakunbound 'dotimes)
585(fmakunbound 'declare) 585(fmakunbound 'declare)