Function: backtrace-frame-fun
backtrace-frame-fun is a byte-compiled function defined in
backtrace.el.gz.
Signature
(backtrace-frame-fun backtrace-frame-fun X)
Documentation
Access slot "fun" of backtrace-frame struct X.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/backtrace.el.gz
;;; Backtrace frame data structure
(cl-defstruct
(backtrace-frame
(:constructor backtrace-make-frame))
evald ; Non-nil if argument evaluation is complete.
fun ; The function called/to call in this frame.
args ; Either evaluated or unevaluated arguments to the function.
flags ; A plist, possible properties are :debug-on-exit and :source-available.
locals ; An alist containing variable names and values.
buffer ; If non-nil, the buffer in use by eval-buffer or eval-region.
pos ; The position in the buffer.
)