x_dnd_n_targets);
x_catch_errors (dpyinfo->display);
- XSendEvent (FRAME_X_DISPLAY (f), target, False, 0, &msg);
+ XSendEvent (FRAME_X_DISPLAY (f), target, False, NoEventMask, &msg);
x_uncatch_errors ();
}
msg.xclient.data.l[4] = action;
x_catch_errors (dpyinfo->display);
- XSendEvent (FRAME_X_DISPLAY (f), target, False, 0, &msg);
+ XSendEvent (FRAME_X_DISPLAY (f), target, False, NoEventMask, &msg);
x_uncatch_errors ();
}
msg.xclient.data.l[4] = 0;
x_catch_errors (dpyinfo->display);
- XSendEvent (FRAME_X_DISPLAY (f), target, False, 0, &msg);
+ XSendEvent (FRAME_X_DISPLAY (f), target, False, NoEventMask, &msg);
x_uncatch_errors ();
}
msg.xclient.data.l[2] = timestamp;
x_catch_errors (dpyinfo->display);
- XSendEvent (FRAME_X_DISPLAY (f), target, False, 0, &msg);
+ XSendEvent (FRAME_X_DISPLAY (f), target, False, NoEventMask, &msg);
x_uncatch_errors ();
return true;
}
/* Setting the event mask to zero means that the message will
be sent to the client that created the window, and if that
window no longer exists, no event will be sent. */
- XSendEvent (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), False, 0, &event);
+ XSendEvent (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), False,
+ NoEventMask, &event);
unblock_input ();
}