summaryrefslogtreecommitdiff
path: root/lisp/loadhist.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1993-12-24 07:29:39 +0000
committerRichard M. Stallman <rms@gnu.org>1993-12-24 07:29:39 +0000
commit67fc28a745cf507c9336d3e0c62c670642f1c37b (patch)
treea57fa961552f6c02a61f26570f09647f8db4c752 /lisp/loadhist.el
parentb0f867435d6f6202bcdd4d4eb2986f8b3e32a3cd (diff)
downloademacs-67fc28a745cf507c9336d3e0c62c670642f1c37b.tar.gz
(unload-feature): Ignore conses in the feature-symbols.
Diffstat (limited to 'lisp/loadhist.el')
-rw-r--r--lisp/loadhist.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/loadhist.el b/lisp/loadhist.el
index 11c6b1e4178..8f29c5a8a71 100644
--- a/lisp/loadhist.el
+++ b/lisp/loadhist.el
@@ -99,6 +99,7 @@ is nil, raise an error."
(mapcar
(function (lambda (x)
(cond ((stringp x) nil)
+ ((consp x) nil)
((boundp x) (makunbound x))
((fboundp x)
(fmakunbound x)