From: Richard M. Stallman Date: Sat, 15 Oct 2005 14:48:26 +0000 (+0000) Subject: Don't try to autoload hash table functions. X-Git-Tag: emacs-pretest-22.0.90~6597 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a4684cb09868c943637c10e77a0e34baaad77b3b;p=emacs.git Don't try to autoload hash table functions. --- diff --git a/lisp/url/ChangeLog b/lisp/url/ChangeLog index 3eb850f85f3..d7a822e105a 100644 --- a/lisp/url/ChangeLog +++ b/lisp/url/ChangeLog @@ -1,3 +1,7 @@ +2005-10-15 Richard M. Stallman + + * url.el: Don't try to autoload hash table functions. + 2005-10-03 Stefan Monnier * url-http.el (url-http-create-request): Avoid incorrect implicit diff --git a/lisp/url/url.el b/lisp/url/url.el index ef101fe6f2a..03bf4218af9 100644 --- a/lisp/url/url.el +++ b/lisp/url/url.el @@ -30,16 +30,6 @@ ;;; Code: (eval-when-compile (require 'cl)) -;; Don't require CL at runtime if we can avoid it (Emacs 21). -;; Otherwise we need it for hashing functions. `puthash' was never -;; defined in the Emacs 20 cl.el for some reason. -(if (fboundp 'puthash) - nil ; internal or CL is loaded - (defalias 'puthash 'cl-puthash) - (autoload 'cl-puthash "cl") - (autoload 'gethash "cl") - (autoload 'maphash "cl") - (autoload 'make-hash-table "cl")) (eval-when-compile (require 'mm-decode)