Function: backtrace-get-frame-end

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

Signature

(backtrace-get-frame-end &optional POS)

Documentation

Return the position of the end of the frame at POS in the buffer.

POS, if omitted or nil, defaults to point.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/backtrace.el.gz
(defun backtrace-get-frame-end (&optional pos)
  "Return the position of the end of the frame at POS in the buffer.
POS, if omitted or nil, defaults to point."
  (next-single-property-change (or pos (point))
                                    'backtrace-index nil (point-max)))