Function: speedbar-width

speedbar-width is a byte-compiled function defined in speedbar.el.gz.

Signature

(speedbar-width)

Documentation

Return the width of the speedbar.

if speedbar-window-mode is open, the width is speedbar-window--width otherwise the width is speedbar-frame-width.

Source Code

;; Defined in /usr/src/emacs/lisp/speedbar.el.gz
(defun speedbar-width ()
  "Return the width of the `speedbar'.
if `speedbar-window-mode' is open, the width is `speedbar-window--width'
otherwise the width is `speedbar-frame-width'."
  (if (speedbar-window--live-p)
      (speedbar-window--width)
    (speedbar-frame-width)))