Function: calc-point-char
calc-point-char is an autoloaded, interactive and byte-compiled
function defined in calc-mode.el.gz.
Signature
(calc-point-char CH)
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-mode.el.gz
(defun calc-point-char (ch)
(interactive "cCharacter to use as decimal point: ")
(calc-wrapper
(or (>= ch 32)
(error "Control characters not allowed as decimal point"))
(calc-change-mode 'calc-point-char (char-to-string ch) t)
(message "Decimal point character is \"%c\"" ch)))