Function: org-link-frame-setup-function
org-link-frame-setup-function is a byte-compiled function defined in
ol.el.gz.
Signature
(org-link-frame-setup-function LINK-TYPE)
Documentation
Return the frame setup function for the link type LINK-TYPE.
This signals an error if the value of the key LINK-TYPE in
org-link-frame-setup is not a function.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ol.el.gz
(defun org-link-frame-setup-function (link-type)
"Return the frame setup function for the link type LINK-TYPE.
This signals an error if the value of the key LINK-TYPE in
`org-link-frame-setup' is not a function."
(let ((fun (cdr (assq link-type org-link-frame-setup))))
(if (functionp fun)
fun
(error "The frame setup configuration `%S' for `%s' link type is ill-defined"
fun link-type))))