Function: backtrace-get-text-properties
backtrace-get-text-properties is a byte-compiled function defined in
backtrace.el.gz.
Signature
(backtrace-get-text-properties POS)
Documentation
Return a plist of backtrace-mode's text properties at POS.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/backtrace.el.gz
(defun backtrace-get-text-properties (pos)
"Return a plist of backtrace-mode's text properties at POS."
(apply #'append
(mapcar (lambda (prop)
(list prop (get-text-property pos prop)))
'(backtrace-section backtrace-index backtrace-view
backtrace-form))))