Function: dframe-temp-buffer-show-function

dframe-temp-buffer-show-function is a byte-compiled function defined in dframe.el.gz.

Signature

(dframe-temp-buffer-show-function BUFFER)

Documentation

Placed in the variable temp-buffer-show-function in dedicated frames.

If a user requests help using C-h (help-command) <Key> the temp BUFFER will be redirected into a window on the attached frame.

Source Code

;; Defined in /usr/src/emacs/lisp/dframe.el.gz
;;; Hacks of normal things.
;;
;; Some normal things that happen in one of these dedicated frames
;; must be handled specially, so that our dedicated frame isn't
;; messed up.
(defun dframe-temp-buffer-show-function (buffer)
  "Placed in the variable `temp-buffer-show-function' in dedicated frames.
If a user requests help using \\[help-command] <Key> the temp BUFFER will be
redirected into a window on the attached frame."
  (if dframe-attached-frame (dframe-select-attached-frame))
  (pop-to-buffer buffer nil)
  (other-window -1)
  (run-hooks 'temp-buffer-show-hook))