Function: dframe-maybee-jump-to-attached-frame
dframe-maybee-jump-to-attached-frame is a byte-compiled function
defined in dframe.el.gz.
Signature
(dframe-maybee-jump-to-attached-frame)
Documentation
Jump to the attached frame ONLY if this was not a mouse event.
Aliases
speedbar-maybee-jump-to-attached-frame (obsolete since 24.4)
Source Code
;; Defined in /usr/src/emacs/lisp/dframe.el.gz
(defun dframe-maybee-jump-to-attached-frame ()
"Jump to the attached frame ONLY if this was not a mouse event."
(when (or (not (dframe-mouse-event-p last-input-event))
dframe-activity-change-focus-flag)
(dframe-select-attached-frame)
;; KB: For what is this - raising the frame??
(other-frame 0)))