From 43811b4e749b1235183a3188f8af92a77da80665 Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Wed, 26 Jul 2006 18:15:08 +0000 Subject: [PATCH] Change callers of read_char. --- src/callint.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/callint.c b/src/callint.c index 475042abbe1..4c8a5718cd9 100644 --- a/src/callint.c +++ b/src/callint.c @@ -563,7 +563,7 @@ If KEYS is omitted or nil, the return value of `this-command-keys' is used. */) break; case 'c': /* Character */ - args[i] = Fread_char (build_string (callint_message), Qnil); + args[i] = Fread_char (build_string (callint_message), Qnil, Qnil); message1_nolog ((char *) 0); /* Passing args[i] directly stimulates compiler bug */ teml = args[i]; @@ -635,7 +635,7 @@ If KEYS is omitted or nil, the return value of `this-command-keys' is used. */) /* Ignore first element, which is the base key. */ tem2 = Fmemq (intern ("down"), Fcdr (teml)); if (! NILP (tem2)) - up_event = Fread_event (Qnil, Qnil); + up_event = Fread_event (Qnil, Qnil, Qnil); } } break; @@ -663,7 +663,7 @@ If KEYS is omitted or nil, the return value of `this-command-keys' is used. */) /* Ignore first element, which is the base key. */ tem2 = Fmemq (intern ("down"), Fcdr (teml)); if (! NILP (tem2)) - up_event = Fread_event (Qnil, Qnil); + up_event = Fread_event (Qnil, Qnil, Qnil); } } break; -- 2.39.2