From 2363bd8daa375b4cd50331ab13523dbaebd226dc Mon Sep 17 00:00:00 2001 From: David Kastrup Date: Mon, 5 Aug 2002 09:34:12 +0000 Subject: [PATCH] (math-format-stack-value): Revert a broken if->when replacement and reformat so that this does not happen again. Fixes a pretty lethal line formatting/yanking bug. --- lisp/calc/calc.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lisp/calc/calc.el b/lisp/calc/calc.el index 1ed448d177f..09614aa1faf 100644 --- a/lisp/calc/calc.el +++ b/lisp/calc/calc.el @@ -2997,8 +2997,9 @@ If mouse is pressed in Calc window, push cut buffer contents onto the stack." c))) (when calc-line-numbering (setq c (math-comp-concat (if (eq calc-language 'big) - (when math-comp-selected - '(tag t "1: ") "1: ") + (if math-comp-selected + '(tag t "1: ") + "1: ") " ") c))) (unless (or (equal calc-right-label "") -- 2.39.5