Function: backtrace-print-frame

backtrace-print-frame is a byte-compiled function defined in backtrace.el.gz.

Signature

(backtrace-print-frame FRAME VIEW)

Documentation

Insert a backtrace FRAME at point formatted according to VIEW.

Tag the sections of the frame with the backtrace-section text property for use by navigation.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/backtrace.el.gz
(defun backtrace-print-frame (frame view)
  "Insert a backtrace FRAME at point formatted according to VIEW.
Tag the sections of the frame with the `backtrace-section' text
property for use by navigation."
  (backtrace--with-output-variables view
   (backtrace--print-flags frame view)
   (backtrace--print-func-and-args frame view)
   (backtrace--print-locals frame view)))