]> code.delx.au - gnu-emacs/commitdiff
(Fcall_interactively) <'C'>: Give Fread_char Qnil
authorKenichi Handa <handa@m17n.org>
Tue, 22 Dec 1998 06:06:48 +0000 (06:06 +0000)
committerKenichi Handa <handa@m17n.org>
Tue, 22 Dec 1998 06:06:48 +0000 (06:06 +0000)
because of the change of the second argument of Fread_char.

src/callint.c

index 55a1b678bf8120de4faf3b7e2e912dee3953f69e..e59fd3e85303bc1edbc166f028e6105231fde071 100644 (file)
@@ -498,7 +498,7 @@ Otherwise, this is done only if an arg is read using the minibuffer.")
          break;
 
         case 'c':              /* Character */
-         args[i] = Fread_char (build_string (callint_message), Qt);
+         args[i] = Fread_char (build_string (callint_message), Qnil);
          message1_nolog ((char *) 0);
          /* Passing args[i] directly stimulates compiler bug */
          teml = args[i];