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
commit4953ba7aedc6f75d48adf8c95f12f67e4e30b0bb (patch)
tree385f82f7f55f5d1346c2fe5489bb8c3d4ae1c9d0 /lisp/loadhist.el
parent6e65271c18730bc4165d00abb2981631376e79d3 (diff)
downloademacs-4953ba7aedc6f75d48adf8c95f12f67e4e30b0bb.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)