summaryrefslogtreecommitdiff
path: root/lisp/loadhist.el
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2000-08-16 20:51:48 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2000-08-16 20:51:48 +0000
commit057ab2946f2ae14fe092c93e3babc1bf1874137a (patch)
treedb406c1114949d48df31480b11dcdc7cc59815ef /lisp/loadhist.el
parenta313af117c78741a71e7ccf28c3da71ef25d371a (diff)
downloademacs-057ab2946f2ae14fe092c93e3babc1bf1874137a.tar.gz
(unload-feature): Typo.
Diffstat (limited to 'lisp/loadhist.el')
-rw-r--r--lisp/loadhist.el2
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))))))