diff src/callint.c @ 72135:2bd7c2f5456f

Change callers of read_char.
author Chong Yidong <cyd@stupidchicken.com>
date Wed, 26 Jul 2006 18:15:08 +0000
parents 34c5e405ed37
children 6d481bdb9779 02e39decdc84 858cb33ae39d
line wrap: on
line diff
--- a/src/callint.c	Wed Jul 26 18:14:16 2006 +0000
+++ b/src/callint.c	Wed Jul 26 18:15:08 2006 +0000
@@ -563,7 +563,7 @@
 	  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 @@
 		/* 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 @@
 		/* 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;