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-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=93e198d71827a02c9a9fef8616e9819607471c52;p=emacs.git ; * lisp/kmacro.el (kmacro-add-counter): cut useless variable ref (cherry picked from commit 92147d2c9334d3df731562b039cfc26c3486c621) --- diff --git a/lisp/kmacro.el b/lisp/kmacro.el index eddf0d04bf1..33766a7a719 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)))