Variable: calc-trail-mode-abbrev-table
calc-trail-mode-abbrev-table is a variable defined in calc.el.gz.
Value
#<obarray n=1>
Documentation
Abbrev table for calc-trail-mode.
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc.el.gz
(define-derived-mode calc-trail-mode fundamental-mode "Calc Trail"
"Calc Trail mode.
This mode is used by the *Calc Trail* buffer, which records all results
obtained by the GNU Emacs Calculator.
Calculator commands beginning with the t key are used to manipulate
the Trail.
This buffer uses the same key map as the *Calculator* buffer; calculator
commands given here will actually operate on the *Calculator* stack."
(setq truncate-lines t)
(setq buffer-read-only t)
(make-local-variable 'overlay-arrow-position)
(make-local-variable 'overlay-arrow-string)
(when calc-show-banner
(calc--header-line "Emacs Calculator Trail" "Calc Trail"
(/ (window-width) 3) -3)))