diff options
| author | Karl Heuer | 1996-01-25 00:55:56 +0000 |
|---|---|---|
| committer | Karl Heuer | 1996-01-25 00:55:56 +0000 |
| commit | 8700ec61fd72836eafc5a64f3fce62727e6d0a9f (patch) | |
| tree | b72c8c380a1a7202448902c6b2ee23abe3bdbe6a | |
| parent | 40ba5f3f7a4d10cbfd068536f49d5497f3ed37c3 (diff) | |
| download | emacs-8700ec61fd72836eafc5a64f3fce62727e6d0a9f.tar.gz emacs-8700ec61fd72836eafc5a64f3fce62727e6d0a9f.zip | |
(kbd-macro-query): Pass proper format string to message.
| -rw-r--r-- | lisp/macros.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/macros.el b/lisp/macros.el index 69a95a35051..5bf6560e5e6 100644 --- a/lisp/macros.el +++ b/lisp/macros.el | |||
| @@ -195,7 +195,7 @@ Your options are: \\<query-replace-map> | |||
| 195 | (while loop | 195 | (while loop |
| 196 | (let ((key (let ((executing-macro nil) | 196 | (let ((key (let ((executing-macro nil) |
| 197 | (defining-kbd-macro nil)) | 197 | (defining-kbd-macro nil)) |
| 198 | (message msg) | 198 | (message "%s" msg) |
| 199 | (read-event))) | 199 | (read-event))) |
| 200 | def) | 200 | def) |
| 201 | (setq key (vector key)) | 201 | (setq key (vector key)) |