Function: calc-embedded-copy-formula-as-kill

calc-embedded-copy-formula-as-kill is an autoloaded, interactive and byte-compiled function defined in calc-embed.el.gz.

Signature

(calc-embedded-copy-formula-as-kill)

Documentation

Save the formula surrounding point as if killed, but don't kill it.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/calc/calc-embed.el.gz
(defun calc-embedded-copy-formula-as-kill ()
  "Save the formula surrounding point as if killed, but don't kill it."
  (interactive)
  (save-excursion
    (calc-embedded-mark-formula)
    (copy-region-as-kill (point) (mark))
    (pop-mark)))