diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-07-01 17:14:19 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-07-01 17:14:19 +0000 |
commit | bc803358cb4c6692239d2a349f2092d3e2817737 (patch) | |
tree | 2d691b6a665117f41fd99f173b185c171b995b97 /lisp/loadhist.el | |
parent | 137145e2921a653dd08917d620be548ac0d8bb3a (diff) | |
download | emacs-bc803358cb4c6692239d2a349f2092d3e2817737.tar.gz |
(unload-feature): The autoload property does not
tart with `autoload'.
Diffstat (limited to 'lisp/loadhist.el')
-rw-r--r-- | lisp/loadhist.el | 2 |
1 files changed, 1 insertions, 1 deletions
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)))) |