Function: idlwave-help-return-to-calling-frame

idlwave-help-return-to-calling-frame is an interactive and byte-compiled function defined in idlw-help.el.gz.

Signature

(idlwave-help-return-to-calling-frame)

Documentation

Select the frame from which the help frame was selected.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/idlw-help.el.gz
(defun idlwave-help-return-to-calling-frame ()
  "Select the frame from which the help frame was selected."
  (interactive)
  (if (and (frame-live-p idlwave-help-return-frame)
	   (not (eq (selected-frame) idlwave-help-return-frame)))
      (select-frame idlwave-help-return-frame)))