branch: elpa/devil
commit 459ce032e40f0efaec284d2f7861ca172e130d63
Author: Philip Kaludercic <[email protected]>
Commit: Susam Pal <[email protected]>
* 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 8f2e3d15d2..2a341f57f8 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'."