changeset 14310:49af6e2bfaa8

(Electric-buffer-menu-undefined): Pass proper format string to message.
author Karl Heuer <kwzh@gnu.org>
date Thu, 25 Jan 1996 00:53:08 +0000
parents d546dc4e0c0b
children 381c7a6d21f6
files lisp/ebuff-menu.el
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ebuff-menu.el	Thu Jan 25 00:52:48 1996 +0000
+++ b/lisp/ebuff-menu.el	Thu Jan 25 00:53:08 1996 +0000
@@ -239,7 +239,8 @@
 (defun Electric-buffer-menu-undefined ()
   (interactive)
   (ding)
-  (message (if (and (eq (key-binding "\C-c\C-c") 'Electric-buffer-menu-quit)
+  (message "%s"
+	   (if (and (eq (key-binding "\C-c\C-c") 'Electric-buffer-menu-quit)
 		    (eq (key-binding " ") 'Electric-buffer-menu-select)
 		    (eq (key-binding (char-to-string help-char)) 'Helper-help)
 		    (eq (key-binding "?") 'Helper-describe-bindings))