Function: dframe-message
dframe-message is a byte-compiled function defined in dframe.el.gz.
Signature
(dframe-message FMT &rest ARGS)
Documentation
Like message, but for use in a dedicated frame.
Argument FMT is the format string, and ARGS are the arguments for message.
Aliases
speedbar-message (obsolete since 24.4)
Source Code
;; Defined in /usr/src/emacs/lisp/dframe.el.gz
(defun dframe-message (fmt &rest args)
"Like `message', but for use in a dedicated frame.
Argument FMT is the format string, and ARGS are the arguments for message."
(save-selected-window
(if dframe-suppress-message-flag
(apply #'format-message fmt args)
(if dframe-attached-frame
;; KB: Here we do not need calling `dframe-select-attached-frame'
(select-frame dframe-attached-frame))
(apply #'message fmt args))))