Function: backtrace-get-form
backtrace-get-form is a byte-compiled function defined in
backtrace.el.gz.
Signature
(backtrace-get-form &optional POS)
Documentation
Return the backtrace form data for the form printed at POS.
POS, if omitted or nil, defaults to point.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/backtrace.el.gz
(defsubst backtrace-get-form (&optional pos)
"Return the backtrace form data for the form printed at POS.
POS, if omitted or nil, defaults to point."
(get-text-property (or pos (point)) 'backtrace-form))