# HG changeset patch # User Richard M. Stallman # Date 829800763 0 # Node ID a0716ac97a8359e77f73af2a11b95a374615ec09 # Parent c99dd01d9334d44da617c67c99676869b6908f78 (STANDARD_EVENT_SET): Remove PointerNotifyHintMask. (CHECK_X_FRAME): Macro deleted. diff -r c99dd01d9334 -r a0716ac97a83 src/xterm.h --- a/src/xterm.h Thu Apr 18 04:03:16 1996 +0000 +++ b/src/xterm.h Thu Apr 18 04:12:43 1996 +0000 @@ -94,25 +94,9 @@ #define FONT_HEIGHT(f) ((f)->ascent + (f)->descent) #define FONT_BASE(f) ((f)->ascent) -#define CHECK_X_FRAME(f, frame) \ - if (NILP (frame)) \ - f = selected_frame; \ - else \ - { \ - CHECK_LIVE_FRAME (frame, 0); \ - f = XFRAME (frame); \ - } \ - if (! FRAME_X_P (f)) - - - /* The mask of events that text windows always want to receive. This - does not include mouse movement events. It is used when the window - is created (in x_window) and and in selection processing. - - We do include ButtonReleases in this set because Emacs isn't always - fast enough to catch them when it wants them, and they're rare - enough that they don't use much processor time. */ + includes mouse movement events, since handling the mouse-font text property + means that we must track mouse motion all the time. */ #define STANDARD_EVENT_SET \ (KeyPressMask \ @@ -120,7 +104,6 @@ | ButtonPressMask \ | ButtonReleaseMask \ | PointerMotionMask \ - | PointerMotionHintMask \ | StructureNotifyMask \ | FocusChangeMask \ | LeaveWindowMask \