Re: Dired 7.5 bug: a bug in dired-uu
Loren Schall (schall@saifr00.ateng.az.honeywell.com)
Fri, 16 Sep 1994 17:15:55 -0700
After I installed 1.12, a colleague discovered that he could no longer
bring up a dired window. He was getting an error wrong-type-argument to
symbolp. Some investigation turned up the following call to run-hooks
from dired-grok-keymap. run-hooks expects not a function but a symbol
which "points" to a function. I didn't get burned because I don't have
term-setup-hook set (he does).
--- dired.el.orig Mon Sep 5 09:49:41 1994
+++ dired.el Thu Sep 15 20:49:55 1994
@@ -1082,7 +1082,7 @@
(if (and term-setup-hook (boundp 'command-line-args-left))
(progn
(if dired-emacs-19-p
- (run-hooks term-setup-hook)
+ (run-hooks 'term-setup-hook)
(funcall term-setup-hook))
(setq term-setup-hook nil)))
(setq dired-keymap-grokked t)
Loren Schall voice: +1 602 436 5994 FAX: +1 602 436 6479
schall@saifr00.ateng.az.honeywell.com