Variable: calculator-displayers

calculator-displayers is a customizable variable defined in calculator.el.gz.

Value

(((std 110) "Standard display, decimal point or scientific")
 (calculator-eng-display "Eng display")
 ((std 102 t) "Standard display, decimal point with grouping")
 ((std 101) "Standard display, scientific") ("%S" "Emacs printer"))

Documentation

A list of displayers.

Each element is a list of a displayer and a description string. The first element is the one which is currently used, this is for the display of result values not values in expressions. A displayer specification is the same as the values that can be stored in calculator-displayer.

calculator-rotate-displayer rotates this list.

Source Code

;; Defined in /usr/src/emacs/lisp/calculator.el.gz
(defcustom calculator-displayers
  '(((std ?n) "Standard display, decimal point or scientific")
    (calculator-eng-display "Eng display")
    ((std ?f t) "Standard display, decimal point with grouping")
    ((std ?e) "Standard display, scientific")
    ("%S"     "Emacs printer"))
  "A list of displayers.
Each element is a list of a displayer and a description string.  The
first element is the one which is currently used, this is for the
display of result values not values in expressions.  A displayer
specification is the same as the values that can be stored in
`calculator-displayer'.

`calculator-rotate-displayer' rotates this list."
  :type  'sexp)