Function: backtrace-make-frame
backtrace-make-frame is a byte-compiled function defined in
backtrace.el.gz.
Signature
(backtrace-make-frame &key EVALD FUN ARGS FLAGS LOCALS BUFFER POS)
Documentation
Constructor for objects of type backtrace-frame.
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.
)