Function: calc-embedded-kill-formula
calc-embedded-kill-formula is an autoloaded, interactive and
byte-compiled function defined in calc-embed.el.gz.
Signature
(calc-embedded-kill-formula)
Documentation
Kill the formula surrounding point.
If Calc Embedded mode was active, this deactivates it.
The formula (including its surrounding delimiters) is saved in the kill ring.
The command C-y (yank) can retrieve it from there.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-embed.el.gz
(defun calc-embedded-kill-formula ()
"Kill the formula surrounding point.
If Calc Embedded mode was active, this deactivates it.
The formula (including its surrounding delimiters) is saved in the kill ring.
The command \\[yank] can retrieve it from there."
(interactive)
(and calc-embedded-info
(calc-embedded nil))
(calc-embedded-mark-formula)
(kill-region (point) (mark))
(pop-mark))