diff options
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 2 | ||||
-rw-r--r-- | lisp/dirtrack.el | 2 |
2 files changed, 3 insertions, 1 deletions
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 <gerd@gnu.org> + * 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))) |