aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenichi Handa1998-12-22 06:06:48 +0000
committerKenichi Handa1998-12-22 06:06:48 +0000
commit562e4a4f611ae9d495f94a92043ee840a2bb80f3 (patch)
tree9e281015ac7d5da47b115a296d0d38fe45b13633 /src
parentfc351d2f65a539eb1f061ad1e9e104c67b822651 (diff)
downloademacs-562e4a4f611ae9d495f94a92043ee840a2bb80f3.tar.gz
emacs-562e4a4f611ae9d495f94a92043ee840a2bb80f3.zip
(Fcall_interactively) <'C'>: Give Fread_char Qnil
because of the change of the second argument of Fread_char.
Diffstat (limited to 'src')
-rw-r--r--src/callint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/callint.c b/src/callint.c
index 55a1b678bf8..e59fd3e8530 100644
--- a/src/callint.c
+++ b/src/callint.c
@@ -498,7 +498,7 @@ Otherwise, this is done only if an arg is read using the minibuffer.")
498 break; 498 break;
499 499
500 case 'c': /* Character */ 500 case 'c': /* Character */
501 args[i] = Fread_char (build_string (callint_message), Qt); 501 args[i] = Fread_char (build_string (callint_message), Qnil);
502 message1_nolog ((char *) 0); 502 message1_nolog ((char *) 0);
503 /* Passing args[i] directly stimulates compiler bug */ 503 /* Passing args[i] directly stimulates compiler bug */
504 teml = args[i]; 504 teml = args[i];