Function: semantic-debug-set-frame
semantic-debug-set-frame is a byte-compiled function defined in
debug.el.gz.
Signature
(semantic-debug-set-frame ARG &rest ARGS)
Implementations
((iface semantic-debug-interface) frame) in `semantic/debug.el'.
Set the current frame on IFACE to FRAME.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/debug.el.gz
;; Methods
(cl-defmethod semantic-debug-set-frame ((iface semantic-debug-interface) frame)
"Set the current frame on IFACE to FRAME."
(if frame
(oset iface current-frame frame)
(slot-makeunbound iface 'current-frame)))