; Hmm, looks like this is a big nugatory, since we've moved the setting of
; speedbar frame parms to .emacs, q.v.

(defcustom speedbar-frame-parameters
    '( (width . 320)
       (border-width . 0)
       (menu-bar-lines . 0)
       (tool-bar-lines . 0)
       (unsplittable . t)
       (vertical-scroll-bars . right) ))

(defun my-speedbar ()
"Thin wrapper around speedbar to put scrollbar on the right and activate
 minibuffer."
    (interactive)
    (speedbar)
)