From 67fc28a745cf507c9336d3e0c62c670642f1c37b Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Fri, 24 Dec 1993 07:29:39 +0000 Subject: [PATCH] (unload-feature): Ignore conses in the feature-symbols. --- lisp/loadhist.el | 1 + 1 file changed, 1 insertion(+) 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) -- 2.39.5