]> git.eshelyaron.com Git - emacs.git/commitdiff
Don't try to autoload hash table functions.
authorRichard M. Stallman <rms@gnu.org>
Sat, 15 Oct 2005 14:48:26 +0000 (14:48 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 15 Oct 2005 14:48:26 +0000 (14:48 +0000)
lisp/url/ChangeLog
lisp/url/url.el

index 3eb850f85f389cd26f6af4721f980124f6325136..d7a822e105a86b4652c6c8f5116919a622165884 100644 (file)
@@ -1,3 +1,7 @@
+2005-10-15  Richard M. Stallman  <rms@gnu.org>
+
+       * url.el: Don't try to autoload hash table functions.
+
 2005-10-03  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * url-http.el (url-http-create-request): Avoid incorrect implicit
index ef101fe6f2a13c3a256b2678b744943372ad4c5f..03bf4218af95a5343b75dbe576423ba774cf8b30 100644 (file)
 ;;; 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)