diff options
author | Glenn Morris <rgm@gnu.org> | 2009-09-18 07:48:56 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2009-09-18 07:48:56 +0000 |
commit | 3f527154d1e21a5c0eb23d84d0c01dcdb03cfae8 (patch) | |
tree | 546bccba3061758e6d7cd7fc1e5d4e57c0dd3473 /lisp/speedbar.el | |
parent | 63348d2452e6821bfc2f6207bc0d176f58adfeb7 (diff) | |
download | emacs-3f527154d1e21a5c0eb23d84d0c01dcdb03cfae8.tar.gz |
(speedbar-track-mouse): Fix typo in condition-case handler.
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 df6cd0bc005..38d2327d36b 100644 --- a/lisp/speedbar.el +++ b/lisp/speedbar.el @@ -1291,7 +1291,7 @@ and the existence of packages." (if (eq major-mode 'speedbar-mode) ;; XEmacs may let us get in here in other mode buffers. (speedbar-item-info))) - (t (speedbar-message nil))))))) + (error (speedbar-message nil))))))) (defun speedbar-show-info-under-mouse () "Call the info function for the line under the mouse." |