From 6735a29b343972d958c9c03a2b29e56aa1a69bd8 Mon Sep 17 00:00:00 2001 From: Jay Belanger Date: Tue, 15 Feb 2005 19:26:49 +0000 Subject: [PATCH] (calc-handle-undo): Remove prefix from variable in message. --- lisp/calc/calc-undo.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/calc/calc-undo.el b/lisp/calc/calc-undo.el index a49c34010ab..d946a1390d3 100644 --- a/lisp/calc/calc-undo.el +++ b/lisp/calc/calc-undo.el @@ -77,7 +77,8 @@ (let ((v (intern (nth 1 action)))) (calc-record-undo (list 'store (nth 1 action) (and (boundp v) (symbol-value v)))) - (if (y-or-n-p (format "Un-store variable %s? " (nth 1 action))) + (if (y-or-n-p (format "Un-store variable %s? " + (calc-var-name (nth 1 action)))) (progn (if (nth 2 action) (set v (nth 2 action)) -- 2.39.5