From a4684cb09868c943637c10e77a0e34baaad77b3b Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 15 Oct 2005 14:48:26 +0000 Subject: [PATCH] Don't try to autoload hash table functions. --- lisp/url/ChangeLog | 4 ++++ lisp/url/url.el | 10 ---------- 2 files changed, 4 insertions(+), 10 deletions(-) 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) -- 2.39.5