From: Richard M. Stallman Date: Fri, 1 Jul 1994 17:14:19 +0000 (+0000) Subject: (unload-feature): The autoload property does not X-Git-Tag: emacs-19.34~7745 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=96c3ed60ae56f4d8d1143fb17f3dff395df1299c;p=emacs.git (unload-feature): The autoload property does not tart with `autoload'. --- diff --git a/lisp/loadhist.el b/lisp/loadhist.el index 8f29c5a8a71..23091d1f0f3 100644 --- a/lisp/loadhist.el +++ b/lisp/loadhist.el @@ -104,7 +104,7 @@ is nil, raise an error." ((fboundp x) (fmakunbound x) (let ((aload (get x 'autoload))) - (if aload (fset x aload)))))) + (if aload (fset x (cons 'autoload aload))))))) ) (cdr flist))))