comparison lisp/loadhist.el @ 8108:7b9d245c5978

(unload-feature): The autoload property does not tart with `autoload'.
author Richard M. Stallman <rms@gnu.org>
date Fri, 01 Jul 1994 17:14:19 +0000
parents 4521917cdd6e
children 8fb25f247533
comparison
equal deleted inserted replaced
8107:0885b28decc6 8108:7b9d245c5978
102 ((consp x) nil) 102 ((consp x) nil)
103 ((boundp x) (makunbound x)) 103 ((boundp x) (makunbound x))
104 ((fboundp x) 104 ((fboundp x)
105 (fmakunbound x) 105 (fmakunbound x)
106 (let ((aload (get x 'autoload))) 106 (let ((aload (get x 'autoload)))
107 (if aload (fset x aload)))))) 107 (if aload (fset x (cons 'autoload aload)))))))
108 ) 108 )
109 (cdr flist)))) 109 (cdr flist))))
110 110
111 (provide 'loadhist) 111 (provide 'loadhist)
112 112