Function: calculator-push-curnum
calculator-push-curnum is a byte-compiled function defined in
calculator.el.gz.
Signature
(calculator-push-curnum)
Documentation
Push the numeric value of the displayed number to the stack.
Source Code
;; Defined in /usr/src/emacs/lisp/calculator.el.gz
(defun calculator-push-curnum ()
"Push the numeric value of the displayed number to the stack."
(when calculator-curnum
(push (calculator-string-to-number calculator-curnum)
calculator-stack)
(setq calculator-curnum nil)))