From: Richard M. Stallman Date: Fri, 24 Dec 1993 07:29:39 +0000 (+0000) Subject: (unload-feature): Ignore conses in the feature-symbols. X-Git-Tag: emacs-19.34~10515 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=67fc28a745cf507c9336d3e0c62c670642f1c37b;p=emacs.git (unload-feature): Ignore conses in the feature-symbols. --- 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)