diff src/w32term.c @ 30199:298f10cd4ba5

(construct_mouse_click, construct_mouse_wheel) (construct_drag_n_drop, x_scroll_bar_handle_click) (w32_read_socket): Always set `arg' member of input_events.
author Gerd Moellmann <gerd@gnu.org>
date Thu, 13 Jul 2000 23:44:20 +0000
parents 9c30c64ab61d
children 2c2a7ebd2c15
line wrap: on
line diff
--- a/src/w32term.c	Thu Jul 13 23:43:58 2000 +0000
+++ b/src/w32term.c	Thu Jul 13 23:44:20 2000 +0000
@@ -5518,6 +5518,7 @@
     XSETINT (result->x, LOWORD (msg->msg.lParam));
     XSETINT (result->y, HIWORD (msg->msg.lParam));
     XSETFRAME (result->frame_or_window, f);
+    result->arg = Qnil;
   }
 }
 
@@ -5538,6 +5539,7 @@
   XSETINT (result->x, p.x);
   XSETINT (result->y, p.y);
   XSETFRAME (result->frame_or_window, f);
+  result->arg = Qnil;
 }
 
 static void
@@ -5588,6 +5590,7 @@
 
   XSETFRAME (frame, f);
   result->frame_or_window = Fcons (frame, files);
+  result->arg = Qnil;
 }
 
 
@@ -7189,6 +7192,7 @@
   /* not really meaningful to distinguish up/down */
   emacs_event->modifiers = msg->dwModifiers;
   emacs_event->frame_or_window = bar->window;
+  emacs_event->arg = Qnil;
   emacs_event->timestamp = msg->msg.time;
 
   {
@@ -7506,6 +7510,7 @@
 		      {
 			bufp->kind = deiconify_event;
 			XSETFRAME (bufp->frame_or_window, f);
+			bufp->arg = Qnil;
 			bufp++;
 			count++;
 			numchars--;
@@ -7543,6 +7548,7 @@
 	  
 	      bufp->kind = language_change_event;
 	      XSETFRAME (bufp->frame_or_window, f);
+	      bufp->arg = Qnil;
 	      bufp->code = msg.msg.wParam;
 	      bufp->modifiers = msg.msg.lParam & 0xffff;
 	      bufp++;
@@ -7564,6 +7570,7 @@
 	      bufp->code = msg.msg.wParam;
 	      bufp->modifiers = msg.dwModifiers;
 	      XSETFRAME (bufp->frame_or_window, f);
+	      bufp->arg = Qnil;
 	      bufp->timestamp = msg.msg.time;
 	      bufp++;
 	      numchars--;
@@ -7584,6 +7591,7 @@
 	      bufp->code = msg.msg.wParam;
 	      bufp->modifiers = msg.dwModifiers;
 	      XSETFRAME (bufp->frame_or_window, f);
+	      bufp->arg = Qnil;
 	      bufp->timestamp = msg.msg.time;
 	      bufp++;
 	      numchars--;
@@ -7830,6 +7838,7 @@
 		  
 		  bufp->kind = iconify_event;
 		  XSETFRAME (bufp->frame_or_window, f);
+		  bufp->arg = Qnil;
 		  bufp++;
 		  count++;
 		  numchars--;
@@ -7859,6 +7868,7 @@
 
 		      bufp->kind = deiconify_event;
 		      XSETFRAME (bufp->frame_or_window, f);
+		      bufp->arg = Qnil;
 		      bufp++;
 		      count++;
 		      numchars--;
@@ -7975,6 +7985,7 @@
 	      
 	      bufp->kind = delete_window_event;
 	      XSETFRAME (bufp->frame_or_window, f);
+	      bufp->arg = Qnil;
 	      bufp++;
 	      count++;
 	      numchars--;
@@ -7991,6 +8002,7 @@
 	  
 	      bufp->kind = menu_bar_activate_event;
 	      XSETFRAME (bufp->frame_or_window, f);
+	      bufp->arg = Qnil;
 	      bufp++;
 	      count++;
 	      numchars--;