diff options
author | Kim F. Storm <storm@cua.dk> | 2004-09-12 21:39:40 +0000 |
---|---|---|
committer | Kim F. Storm <storm@cua.dk> | 2004-09-12 21:39:40 +0000 |
commit | 2b4b4febb22320681411fc882a841ecd1efb3469 (patch) | |
tree | bf594251552411a27bbf5ef6c72f805f3ca3c489 /lisp/kmacro.el | |
parent | c0ad3b38ec2daba15be85cc36ba4961535af9751 (diff) | |
download | emacs-2b4b4febb22320681411fc882a841ecd1efb3469.tar.gz |
(kmacro-step-edit-prompt): Add "%s" format to message.
Diffstat (limited to 'lisp/kmacro.el')
-rw-r--r-- | lisp/kmacro.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/kmacro.el b/lisp/kmacro.el index 9e3271d01cc..5aefe46625d 100644 --- a/lisp/kmacro.el +++ b/lisp/kmacro.el @@ -928,7 +928,8 @@ following additional answers: `insert', `insert-1', `replace', `replace-1', (curmsg (current-message))) ;; TODO: Scroll macro if max-mini-window-height is too small. - (message (concat + (message "%s" + (concat (format "Macro: %s%s%s%s%s\n" (format-kbd-macro kmacro-step-edit-new-macro 1) (if (and kmacro-step-edit-new-macro (> (length kmacro-step-edit-new-macro) 0)) " " "") |