diff lisp/log-edit.el @ 65582:4d1085b02d64

Message format spec fixes (1)
author Deepak Goel <deego@gnufans.org>
date Sun, 18 Sep 2005 12:25:02 +0000
parents 41bb365f41c4
children 96187e7edd1b fa0da9b57058
line wrap: on
line diff
--- a/lisp/log-edit.el	Sun Sep 18 05:43:17 2005 +0000
+++ b/lisp/log-edit.el	Sun Sep 18 12:25:02 2005 +0000
@@ -331,7 +331,7 @@
     (set (make-local-variable 'log-edit-initial-files) (log-edit-files))
     (when setup (run-hooks 'log-edit-hook))
     (goto-char (point-min)) (push-mark (point-max))
-    (message (substitute-command-keys
+    (message "%s" (substitute-command-keys
 	      "Press \\[log-edit-done] when you are done editing."))))
 
 (define-derived-mode log-edit-mode text-mode "Log-Edit"
@@ -426,7 +426,7 @@
   (interactive)
   (if (eq last-command 'log-edit-mode-help)
       (describe-function major-mode)
-    (message
+    (message "%s"
      (substitute-command-keys
       "Type `\\[log-edit-done]' to finish commit.  Try `\\[describe-function] log-edit-done' for more help."))))