diff options
| author | Dave Love | 2001-03-05 18:41:37 +0000 |
|---|---|---|
| committer | Dave Love | 2001-03-05 18:41:37 +0000 |
| commit | 335db3c1d43a27d8bf3a5217d5b3ed42b888e736 (patch) | |
| tree | 5e7a549ee053d47bf7fa6e5ffb0de149cb12d030 | |
| parent | 49e37720a355bed123bc26d2b4e307c89cf7e7aa (diff) | |
| download | emacs-335db3c1d43a27d8bf3a5217d5b3ed42b888e736.tar.gz emacs-335db3c1d43a27d8bf3a5217d5b3ed42b888e736.zip | |
(dotimes, dolist): Undef prior to autoloading
new defs.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/emacs-lisp/cl.el | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index fdc2e2cdb29..6d8fcbe5049 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2001-03-05 Dave Love <fx@gnu.org> | ||
| 2 | |||
| 3 | * emacs-lisp/cl.el (dotimes, dolist): Undef prior to autoloading | ||
| 4 | new defs. | ||
| 5 | |||
| 1 | 2001-03-05 Kenichi Handa <handa@etl.go.jp> | 6 | 2001-03-05 Kenichi Handa <handa@etl.go.jp> |
| 2 | 7 | ||
| 3 | * language/ethio-util.el (ethio-toggle-space): Update | 8 | * 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" | |||
| 552 | "Non-nil means don't make CL functions autoload.") | 552 | "Non-nil means don't make CL functions autoload.") |
| 553 | 553 | ||
| 554 | ;;; Autoload the other portions of the package. | 554 | ;;; Autoload the other portions of the package. |
| 555 | ;; We want to replace the basic versions of dolist, dotimes below. | ||
| 556 | (fmakunbound 'dolist) | ||
| 557 | (fmakunbound 'dotimes) | ||
| 555 | (mapcar (function | 558 | (mapcar (function |
| 556 | (lambda (set) | 559 | (lambda (set) |
| 557 | (let ((file (if cl-fake-autoloads "<none>" (car set)))) | 560 | (let ((file (if cl-fake-autoloads "<none>" (car set)))) |