From 303fb740e80348ff6e44dba3c87b49edcd3842ff Mon Sep 17 00:00:00 2001 From: Philip Kaludercic Date: Wed, 10 May 2023 08:03:03 +0200 Subject: [PATCH 6/8] * devil.el (devil--log-command-loop-info): Use a single 'format' --- devil.el | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/devil.el b/devil.el index d67c9da..04229aa 100644 --- a/devil.el +++ b/devil.el @@ -344,11 +344,12 @@ the original Emacs key sequence." (defun devil--log-command-loop-info () "Log command loop information for debugging purpose." (devil--log - (concat "Found " - (format "current-prefix-arg: %s; " current-prefix-arg) - (format "this-command: %s; " this-command) - (format "last-command: %s; " last-command) - (format "last-repeatable-command: %s" last-repeatable-command)))) + (format "Found current-prefix-arg: %s; \ +this-command: %s; last-command: %s; last-repeatable-command: %s" + current-prefix-arg + this-command + last-command + last-repeatable-command))) (defun devil--repeatable-key-p (described-key) "Return t iff DESCRIBED-KEY belongs to `devil-repeatable-keys'." -- 2.39.2