Function: calc-yank-mouse-primary

calc-yank-mouse-primary is an autoloaded, interactive and byte-compiled function defined in calc-yank.el.gz.

Signature

(calc-yank-mouse-primary RADIX)

Documentation

Yank the current primary selection into the Calculator buffer.

See calc-yank for details about RADIX.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/calc/calc-yank.el.gz
;;;###autoload
(defun calc-yank-mouse-primary (radix)
  "Yank the current primary selection into the Calculator buffer.
See `calc-yank' for details about RADIX."
  (interactive "P")
  (if (or select-enable-primary
          select-enable-clipboard)
      (calc-yank-internal radix (gui-get-primary-selection))
    ;; Yank from the kill ring.
    (calc-yank radix)))