Function: mh-speed-select-attached-frame

mh-speed-select-attached-frame is a macro defined in mh-speed.el.gz.

Signature

(mh-speed-select-attached-frame)

Documentation

Compatibility macro to handle speedbar versions 0.11a and 0.14beta4.

Source Code

;; Defined in /usr/src/emacs/lisp/mh-e/mh-speed.el.gz
(defmacro mh-speed-select-attached-frame ()
  "Compatibility macro to handle speedbar versions 0.11a and 0.14beta4."
  (cond ((fboundp 'dframe-select-attached-frame)
         '(dframe-select-attached-frame speedbar-frame))
        ((boundp 'speedbar-attached-frame)
         '(select-frame speedbar-attached-frame))
        (t (error "Installed speedbar version not supported by MH-E"))))