Variable: track-changes-record-errors
track-changes-record-errors is a variable defined in
track-changes.el.gz.
Value
2
Documentation
If non-nil, keep track of errors in before/after-change-functions calls.
The errors are kept in track-changes--error-log.
If set to trace, then we additionally keep a trace of recent calls to the API.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/track-changes.el.gz
;;;; Exposed API.
(defvar track-changes-record-errors
;; By default, record errors only for non-release versions, because we
;; presume that these might be too old to receive fixes, so better not
;; annoy the user too much about errors.
(string-match "\\..*\\." emacs-version)
"If non-nil, keep track of errors in `before/after-change-functions' calls.
The errors are kept in `track-changes--error-log'.
If set to `trace', then we additionally keep a trace of recent calls to the API.")