Function: calc-edit-mode

calc-edit-mode is an interactive and byte-compiled function defined in calc-yank.el.gz.

Signature

(calc-edit-mode)

Documentation

Calculator editing mode. Press RET, LFD, or C-c C-c to finish.

To cancel the edit, simply kill the *Calc Edit* buffer.

This mode runs the hook calc-edit-mode-hook, as the final or penultimate step during initialization.

C-c C-c calc-edit-finish
C-j calc-edit-finish
RET calc-edit-return

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/calc/calc-yank.el.gz
(define-derived-mode calc-edit-mode nil "Calc Edit"
  "Calculator editing mode.  Press RET, LFD, or C-c C-c to finish.
To cancel the edit, simply kill the *Calc Edit* buffer."
  (setq-local buffer-read-only nil)
  (setq-local truncate-lines nil))