From: Dave Love Date: Mon, 5 Mar 2001 18:41:37 +0000 (+0000) Subject: (dotimes, dolist): Undef prior to autoloading X-Git-Tag: emacs-pretest-21.0.100~208 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=335db3c1d43a27d8bf3a5217d5b3ed42b888e736;p=emacs.git (dotimes, dolist): Undef prior to autoloading new defs. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index fdc2e2cdb29..6d8fcbe5049 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2001-03-05 Dave Love + + * emacs-lisp/cl.el (dotimes, dolist): Undef prior to autoloading + new defs. + 2001-03-05 Kenichi Handa * language/ethio-util.el (ethio-toggle-space): Update diff --git a/lisp/emacs-lisp/cl.el b/lisp/emacs-lisp/cl.el index 1b8bb838a8f..66947c01daa 100644 --- a/lisp/emacs-lisp/cl.el +++ b/lisp/emacs-lisp/cl.el @@ -552,6 +552,9 @@ Keywords supported: :test :test-not :key" "Non-nil means don't make CL functions autoload.") ;;; Autoload the other portions of the package. +;; We want to replace the basic versions of dolist, dotimes below. +(fmakunbound 'dolist) +(fmakunbound 'dotimes) (mapcar (function (lambda (set) (let ((file (if cl-fake-autoloads "" (car set))))