Function: speedbar-customize
speedbar-customize is an interactive and byte-compiled function
defined in speedbar.el.gz.
Signature
(speedbar-customize)
Documentation
Customize speedbar using the Custom package.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/speedbar.el.gz
;;; User Input stuff
;;
(defun speedbar-customize ()
"Customize speedbar using the Custom package."
(interactive)
(let ((sf (selected-frame)))
(dframe-select-attached-frame speedbar-frame)
(customize-group 'speedbar)
(select-frame sf))
(dframe-maybee-jump-to-attached-frame))