1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-28 10:56:36 +00:00

(dirtrack-mode): Doc fix.

This commit is contained in:
Glenn Morris 2007-10-30 06:42:29 +00:00
parent db8446b8bd
commit 370d40744d
2 changed files with 9 additions and 1 deletions

View File

@ -27,6 +27,10 @@
2007-10-30 Glenn Morris <rgm@gnu.org>
* dirtrack.el (dirtrack-mode): Doc fix.
* shell.el (shell-dirtrack-verbose, shell-mode)
(shell-directory-tracker, shell-dirtrack-mode): Doc fix.
* emacs-lisp/bytecomp.el (byte-compile-disable-warning)
(byte-compile-enable-warning): Doc fix.

View File

@ -194,7 +194,11 @@ and ends with a forward slash."
;;;###autoload
(define-minor-mode dirtrack-mode
"Enable or disable Dirtrack directory tracking in a shell buffer.
This provides an alternative to `shell-dirtrack-mode'."
This method requires that your shell prompt contain the full
current working directory at all times, and that `dirtrack-list'
is set to match the prompt. This is an alternative to
`shell-dirtrack-mode', which works differently, by tracking `cd'
and similar commands which change the shell working directory."
nil nil nil
(if dirtrack-mode
(add-hook 'comint-preoutput-filter-functions 'dirtrack nil t)