diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2010-05-12 00:01:34 +0200 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2010-05-12 00:01:34 +0200 |
commit | 9ee120ba0118e977e5b7fa78123af6c765002b99 (patch) | |
tree | 4ef6fc1cfd950471fe1cc71e0642f7149142067d /lisp/dirtrack.el | |
parent | 587e4b13796f78ed582f36ff8b2ea261c6902b6f (diff) | |
download | emacs-9ee120ba0118e977e5b7fa78123af6c765002b99.tar.gz |
Fix bug#6173: "(require 'dirtrack) erroring"
* dirtrack.el (dirtrackp): Remove defcustom; don't make automatically
buffer-local (it's an obsolete alias for `dirtrack-mode'.)
Diffstat (limited to 'lisp/dirtrack.el')
-rw-r--r-- | lisp/dirtrack.el | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/lisp/dirtrack.el b/lisp/dirtrack.el index c209a2a6eb9..4e29c51fa75 100644 --- a/lisp/dirtrack.el +++ b/lisp/dirtrack.el @@ -143,13 +143,6 @@ be on a single line." :group 'dirtrack :type 'string) -(defcustom dirtrackp t - "If non-nil, directory tracking via `dirtrack' is enabled." - :group 'dirtrack - :type 'boolean) - -(make-variable-buffer-local 'dirtrackp) - (defcustom dirtrack-directory-function (if (memq system-type (list 'ms-dos 'windows-nt 'cygwin)) 'dirtrack-windows-directory-function |