diff options
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/cl.el | 3 |
1 files changed, 3 insertions, 0 deletions
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 "<none>" (car set)))) |