Don't try to autoload hash table functions.
This commit is contained in:
parent
a19a00033c
commit
a4684cb098
2 changed files with 4 additions and 10 deletions
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue