diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2000-08-16 20:51:48 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2000-08-16 20:51:48 +0000 |
commit | 057ab2946f2ae14fe092c93e3babc1bf1874137a (patch) | |
tree | db406c1114949d48df31480b11dcdc7cc59815ef /lisp/loadhist.el | |
parent | a313af117c78741a71e7ccf28c3da71ef25d371a (diff) | |
download | emacs-057ab2946f2ae14fe092c93e3babc1bf1874137a.tar.gz |
(unload-feature): Typo.
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 95208bc7908..402a3ce35b9 100644 --- a/lisp/loadhist.el +++ b/lisp/loadhist.el @@ -150,7 +150,7 @@ is nil, raise an error." (if (or (and (boundp x) ; Random hooks. (consp (symbol-value x)) (string-match "-hooks?\\'" (symbol-name x))) - (and (fboundp x) ; Known abnormal hooks etc. + (and (boundp x) ; Known abnormal hooks etc. (memq x loadhist-hook-functions))) (dolist (y (cdr flist)) (remove-hook x y)))))) |