Function: dframe-with-attached-buffer

dframe-with-attached-buffer is a macro defined in dframe.el.gz.

Signature

(dframe-with-attached-buffer &rest FORMS)

Documentation

Execute FORMS in the attached frame's special buffer.

Optionally select that frame if necessary.

Aliases

speedbar-with-attached-buffer (obsolete since 24.4)

Source Code

;; Defined in /usr/src/emacs/lisp/dframe.el.gz
(defmacro dframe-with-attached-buffer (&rest forms)
  "Execute FORMS in the attached frame's special buffer.
Optionally select that frame if necessary."
  `(save-selected-window
     ;;(speedbar-set-timer speedbar-update-speed)
     (dframe-select-attached-frame)
     ,@forms
     (dframe-maybee-jump-to-attached-frame)))