Variable: calculator-unary-style

calculator-unary-style is a customizable variable defined in calculator.el.gz.

Value

postfix

Documentation

Value is either prefix or postfix.

This determines the default behavior of unary operators.

Source Code

;; Defined in /usr/src/emacs/lisp/calculator.el.gz
(defcustom calculator-unary-style 'postfix
  "Value is either `prefix' or `postfix'.
This determines the default behavior of unary operators."
  :type    '(choice (const prefix) (const postfix))
  :group   'calculator)