From 4120f5f5d2fb7c753801a474cd78f9f077f1f103 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Thu, 25 Jan 1996 00:51:58 +0000 Subject: [PATCH] (cookie-snarf): Pass proper format string to message. --- lisp/play/cookie1.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/play/cookie1.el b/lisp/play/cookie1.el index 57d4085f6f5..3f8087fa2fa 100644 --- a/lisp/play/cookie1.el +++ b/lisp/play/cookie1.el @@ -104,7 +104,7 @@ and subsequent calls on the same file won't go to disk." (if sym (symbol-value sym) (setq sym (intern phrase-file cookie-cache)) - (message startmsg) + (message "%s" startmsg) (save-excursion (let ((buf (generate-new-buffer "*cookie*")) (result nil)) @@ -118,7 +118,7 @@ and subsequent calls on the same file won't go to disk." (setq result (cons (buffer-substring beg (1- (point))) result)))) (kill-buffer buf) - (message endmsg) + (message "%s" endmsg) (set sym (apply 'vector result))))))) (defun read-cookie (prompt phrase-file startmsg endmsg &optional require-match) -- 2.39.2