From: Lars Ingebrigtsen Date: Mon, 13 Jun 2022 15:14:08 +0000 (+0200) Subject: Clarify what a Calc registeri in in calc-insert-register X-Git-Tag: emacs-28.1.90~36 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=73400e4002ce8fca060093548e6791b3a784eeaa;p=emacs.git Clarify what a Calc registeri in in calc-insert-register * lisp/calc/calc-yank.el (calc-insert-register): Note that these aren't normal registers (bug#55943). --- diff --git a/lisp/calc/calc-yank.el b/lisp/calc/calc-yank.el index 8c6d3f51e5d..189ee0a2444 100644 --- a/lisp/calc/calc-yank.el +++ b/lisp/calc/calc-yank.el @@ -301,7 +301,10 @@ Interactively, reads the register using `register-read-with-preview'." (defun calc-insert-register (register) "Insert the contents of register REGISTER. -Interactively, reads the register using `register-read-with-preview'." +Interactively, reads the register using `register-read-with-preview'. + +Note that this command only works with Calc registers, and they +have nothing to do with the Emacs-wide register mechanism." (interactive (list (register-read-with-preview "Insert register: "))) (if (eq major-mode 'calc-mode) (let ((val (calc-get-register register)))