changeset 66100:3060f7c63e82

Don't try to autoload hash table functions.
author Richard M. Stallman <rms@gnu.org>
date Sat, 15 Oct 2005 14:48:17 +0000
parents f284148b3d3f
children d26d38e0676d
files lisp/url/url.el
diffstat 1 files changed, 0 insertions(+), 10 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/url/url.el	Sat Oct 15 13:42:32 2005 +0000
+++ b/lisp/url/url.el	Sat Oct 15 14:48:17 2005 +0000
@@ -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)