diff options
author | Richard M. Stallman <rms@gnu.org> | 2002-12-07 21:30:22 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2002-12-07 21:30:22 +0000 |
commit | 9ac8c1d349c5a619a6e53c3b6d9467a02280a2e3 (patch) | |
tree | 60f1392d52dd2c39e19f7aadf72b59fd4f438e9c /lisp/speedbar.el | |
parent | 13d6f3028e5f4c5504e945d8f7b92aa0ba72e8a4 (diff) | |
download | emacs-9ac8c1d349c5a619a6e53c3b6d9467a02280a2e3.tar.gz |
(speedbar-directory-buttons-follow): Don't use directory-sep-char.
Diffstat (limited to 'lisp/speedbar.el')
-rw-r--r-- | lisp/speedbar.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/speedbar.el b/lisp/speedbar.el index 0781c4707b3..9af94658f0b 100644 --- a/lisp/speedbar.el +++ b/lisp/speedbar.el @@ -3553,7 +3553,7 @@ expanded. INDENT is the current indentation level." TEXT is the button clicked on. TOKEN is the directory to follow. INDENT is the current indentation level and is unused." (if (string-match "^[A-z]:$" token) - (setq default-directory (concat token (char-to-string directory-sep-char))) + (setq default-directory (concat token "/")) (setq default-directory token)) ;; Because we leave speedbar as the current buffer, ;; update contents will change directory without |