From: Karl Heuer Date: Tue, 19 Dec 1995 23:20:14 +0000 (+0000) Subject: (Fcall_interactively): Don't log prompt strings. X-Git-Tag: emacs-19.34~2106 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=453ed650c80c7fe692b3ff0ac49a7d997cdf83e7;p=emacs.git (Fcall_interactively): Don't log prompt strings. --- diff --git a/src/callint.c b/src/callint.c index 3dbca425c1c..c8117d169d2 100644 --- a/src/callint.c +++ b/src/callint.c @@ -479,9 +479,9 @@ Otherwise, this is done only if an arg is read using the minibuffer.") break; case 'c': /* Character */ - message1 (callint_message); + message1_nolog (callint_message); args[i] = Fread_char (); - message1 ((char *) 0); + message1_nolog ((char *) 0); /* Passing args[i] directly stimulates compiler bug */ teml = args[i]; visargs[i] = Fchar_to_string (teml);