Function: calculator-op-prec
calculator-op-prec is a byte-compiled function defined in
calculator.el.gz.
Signature
(calculator-op-prec OP)
Documentation
Return OP's precedence for reducing when inserting into the stack.
Defaults to 1.
Source Code
;; Defined in /usr/src/emacs/lisp/calculator.el.gz
(defun calculator-op-prec (op)
"Return OP's precedence for reducing when inserting into the stack.
Defaults to 1."
(or (nth 4 op) 1))