diff options
author | Nick Roberts <nickrob@snap.net.nz> | 2005-02-28 06:18:37 +0000 |
---|---|---|
committer | Nick Roberts <nickrob@snap.net.nz> | 2005-02-28 06:18:37 +0000 |
commit | 2843ef86a59968bdad082cfd4181da321b75612f (patch) | |
tree | 066d697c89cd4622b34eab7476ea115a8ec6160b /lisp/speedbar.el | |
parent | 0f468ead17b8c8f91b54a68f6432447ee19bf3a8 (diff) | |
download | emacs-2843ef86a59968bdad082cfd4181da321b75612f.tar.gz |
(speedbar-update-flag): Doc fix.
(speedbar-show-info-under-mouse): Give set-mouse-position the right
argument.
Diffstat (limited to 'lisp/speedbar.el')
-rw-r--r-- | lisp/speedbar.el | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/lisp/speedbar.el b/lisp/speedbar.el index ecb213d52fd..7a6e01f2859 100644 --- a/lisp/speedbar.el +++ b/lisp/speedbar.el @@ -761,11 +761,9 @@ PATH-EXPRESSION to `speedbar-ignored-path-expressions'." (display-graphic-p) window-system)) "*Non-nil means to automatically update the display. -When this is nil then speedbar will not follow the attached frame's path. -When speedbar is active, use: - -\\<speedbar-key-map> `\\[speedbar-toggle-updates]' - +When this is nil then speedbar will not follow the attached +frame's path. Type \ +\\<speedbar-key-map>\\[speedbar-toggle-updates] in the speedbar \ to toggle this value.") (defvar speedbar-syntax-table nil @@ -1344,7 +1342,7 @@ Optional EVENT is currently not used." (if (equal (car pos) speedbar-frame) (save-excursion (save-window-excursion - (apply 'set-mouse-position pos) + (apply 'set-mouse-position (list (car pos) (cadr pos) (cddr pos))) (speedbar-item-info)))))) (defun speedbar-set-mode-line-format () |