From 5de037e0990fa7f38063aaf833caff204350847d Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Thu, 19 Oct 2000 14:55:12 +0000 Subject: [PATCH] (dirtrack): Fix call to run-hooks. --- lisp/ChangeLog | 2 ++ lisp/dirtrack.el | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 1c993d7ea0a..ef621400b24 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,7 @@ 2000-10-19 Gerd Moellmann + * dirtrack.el (dirtrack): Fix call to run-hooks. + * cmuscheme.el (cmuscheme-program-name): Renamed from scheme-program-name because xscheme.el contains a defcustom with the same name. As a consequence, customizing group `cmuscheme' diff --git a/lisp/dirtrack.el b/lisp/dirtrack.el index 0769013dbaa..297978101c0 100644 --- a/lisp/dirtrack.el +++ b/lisp/dirtrack.el @@ -319,7 +319,7 @@ You can enable directory tracking by adding this function to (if (file-accessible-directory-p prompt-path) ;; Change directory (and (shell-process-cd prompt-path) - (run-hooks dirtrack-directory-change-hook) + (run-hooks 'dirtrack-directory-change-hook) dirtrack-debug (dirtrack-debug-message (format "Changing directory to %s" prompt-path))) -- 2.39.5