Function: calculator-displayer-next
calculator-displayer-next is an interactive and byte-compiled function
defined in calculator.el.gz.
Signature
(calculator-displayer-next)
Documentation
Send the current displayer function a right argument.
This is used to modify display arguments (if the current displayer function supports this). If radix output mode is active, decrease the grouping size.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/calculator.el.gz
(defun calculator-displayer-next ()
"Send the current displayer function a `right' argument.
This is used to modify display arguments (if the current displayer
function supports this).
If radix output mode is active, decrease the grouping size."
(interactive)
(if calculator-output-radix
(progn (setq calculator-radix-grouping-digits
(max 2 (1- calculator-radix-grouping-digits)))
(calculator-enter))
(when (car calculator-displayers)
(let ((disp (caar calculator-displayers)))
(cond ((symbolp disp) (funcall disp 'right))
((and (consp disp) (eq 'std (car disp)))
(calculator-standard-displayer 'right)))))))