diff options
author | Gerd Moellmann <gerd@gnu.org> | 2000-10-19 14:55:12 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2000-10-19 14:55:12 +0000 |
commit | 5de037e0990fa7f38063aaf833caff204350847d (patch) | |
tree | 07bf721f31f15569220a7e4f58e7812f34e48f4e | |
parent | 6deb9af9c70e72f291e7f052083ae4377171a696 (diff) | |
download | emacs-5de037e0990fa7f38063aaf833caff204350847d.tar.gz |
(dirtrack): Fix call to run-hooks.
-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))) |