aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNick Roberts2005-02-28 06:18:37 +0000
committerNick Roberts2005-02-28 06:18:37 +0000
commit2843ef86a59968bdad082cfd4181da321b75612f (patch)
tree066d697c89cd4622b34eab7476ea115a8ec6160b
parent0f468ead17b8c8f91b54a68f6432447ee19bf3a8 (diff)
downloademacs-2843ef86a59968bdad082cfd4181da321b75612f.tar.gz
emacs-2843ef86a59968bdad082cfd4181da321b75612f.zip
(speedbar-update-flag): Doc fix.
(speedbar-show-info-under-mouse): Give set-mouse-position the right argument.
-rw-r--r--lisp/speedbar.el10
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'."
761 (display-graphic-p) 761 (display-graphic-p)
762 window-system)) 762 window-system))
763 "*Non-nil means to automatically update the display. 763 "*Non-nil means to automatically update the display.
764When this is nil then speedbar will not follow the attached frame's path. 764When this is nil then speedbar will not follow the attached
765When speedbar is active, use: 765frame's path. Type \
766 766\\<speedbar-key-map>\\[speedbar-toggle-updates] in the speedbar \
767\\<speedbar-key-map> `\\[speedbar-toggle-updates]'
768
769to toggle this value.") 767to toggle this value.")
770 768
771(defvar speedbar-syntax-table nil 769(defvar speedbar-syntax-table nil
@@ -1344,7 +1342,7 @@ Optional EVENT is currently not used."
1344 (if (equal (car pos) speedbar-frame) 1342 (if (equal (car pos) speedbar-frame)
1345 (save-excursion 1343 (save-excursion
1346 (save-window-excursion 1344 (save-window-excursion
1347 (apply 'set-mouse-position pos) 1345 (apply 'set-mouse-position (list (car pos) (cadr pos) (cddr pos)))
1348 (speedbar-item-info)))))) 1346 (speedbar-item-info))))))
1349 1347
1350(defun speedbar-set-mode-line-format () 1348(defun speedbar-set-mode-line-format ()