]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fcall_interactively): Don't log prompt strings.
authorKarl Heuer <kwzh@gnu.org>
Tue, 19 Dec 1995 23:20:14 +0000 (23:20 +0000)
committerKarl Heuer <kwzh@gnu.org>
Tue, 19 Dec 1995 23:20:14 +0000 (23:20 +0000)
src/callint.c

index 3dbca425c1c5a8e14ad7edfe89bab7796d6d74b7..c8117d169d27be4094d6d5b37c028bc6f94fafdb 100644 (file)
@@ -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);