diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2007-10-30 09:44:17 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2007-10-30 09:44:17 +0000 |
commit | d83fb2569eb32420835f9534ad1d56e319f22c4b (patch) | |
tree | 41e050668308c7527afdb387d1abd38c75d96721 /lisp/loadhist.el | |
parent | ae7c60a92ee348f6aba2149283d024471a0ea5f6 (diff) | |
download | emacs-d83fb2569eb32420835f9534ad1d56e319f22c4b.tar.gz |
(unload-feature): Remove redundant check.
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 5343c3cf34b..fb6a1c0389f 100644 --- a/lisp/loadhist.el +++ b/lisp/loadhist.el @@ -200,7 +200,7 @@ something strange, such as redefining an Emacs function." (unload-func (intern-soft (concat name "-unload-function")))) ;; If FEATURE-unload-function is defined and returns non-nil, ;; don't try to do anything more; otherwise proceed normally. - (unless (and unload-func (fboundp unload-func) + (unless (and (fboundp unload-func) (funcall unload-func)) ;; Try to avoid losing badly when hooks installed in critical ;; places go away. (Some packages install things on |