From: Mattias EngdegÄrd Date: Mon, 6 May 2024 14:09:08 +0000 (+0200) Subject: ; * lisp/kmacro.el (kmacro-add-counter): cut useless variable ref X-Git-Tag: archive/raspbian/1%30.1+1-3+rpi1^2~2^2~20^2~1619 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=92147d2c9334d3df731562b039cfc26c3486c621;p=emacs.git ; * lisp/kmacro.el (kmacro-add-counter): cut useless variable ref --- diff --git a/lisp/kmacro.el b/lisp/kmacro.el index a16f70105c1..07a13d5632c 100644 --- a/lisp/kmacro.el +++ b/lisp/kmacro.el @@ -342,7 +342,7 @@ information." (setq kmacro-last-counter kmacro-counter kmacro-counter (if (and current-prefix-arg (listp current-prefix-arg)) last - kmacro-counter (+ kmacro-counter arg)))) + (+ kmacro-counter arg)))) (unless executing-kbd-macro (kmacro-display-counter)))