aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1996-04-18 04:12:43 +0000
committerRichard M. Stallman1996-04-18 04:12:43 +0000
commitd2f764d0cc1f64f753b73f509cd8510287e7ea95 (patch)
treeb62311bc42e05ca65061bd0166c32c54d20a9719 /src
parentf5bb65ecabb3b2979bae4d55d829c4e7e0653ba5 (diff)
downloademacs-d2f764d0cc1f64f753b73f509cd8510287e7ea95.tar.gz
emacs-d2f764d0cc1f64f753b73f509cd8510287e7ea95.zip
(STANDARD_EVENT_SET): Remove PointerNotifyHintMask.
(CHECK_X_FRAME): Macro deleted.
Diffstat (limited to 'src')
-rw-r--r--src/xterm.h21
1 files changed, 2 insertions, 19 deletions
diff --git a/src/xterm.h b/src/xterm.h
index 0f77e4e1141..e8d645786ba 100644
--- a/src/xterm.h
+++ b/src/xterm.h
@@ -94,25 +94,9 @@ Boston, MA 02111-1307, USA. */
94#define FONT_HEIGHT(f) ((f)->ascent + (f)->descent) 94#define FONT_HEIGHT(f) ((f)->ascent + (f)->descent)
95#define FONT_BASE(f) ((f)->ascent) 95#define FONT_BASE(f) ((f)->ascent)
96 96
97#define CHECK_X_FRAME(f, frame) \
98 if (NILP (frame)) \
99 f = selected_frame; \
100 else \
101 { \
102 CHECK_LIVE_FRAME (frame, 0); \
103 f = XFRAME (frame); \
104 } \
105 if (! FRAME_X_P (f))
106
107
108
109/* The mask of events that text windows always want to receive. This 97/* The mask of events that text windows always want to receive. This
110 does not include mouse movement events. It is used when the window 98 includes mouse movement events, since handling the mouse-font text property
111 is created (in x_window) and and in selection processing. 99 means that we must track mouse motion all the time. */
112
113 We do include ButtonReleases in this set because Emacs isn't always
114 fast enough to catch them when it wants them, and they're rare
115 enough that they don't use much processor time. */
116 100
117#define STANDARD_EVENT_SET \ 101#define STANDARD_EVENT_SET \
118 (KeyPressMask \ 102 (KeyPressMask \
@@ -120,7 +104,6 @@ Boston, MA 02111-1307, USA. */
120 | ButtonPressMask \ 104 | ButtonPressMask \
121 | ButtonReleaseMask \ 105 | ButtonReleaseMask \
122 | PointerMotionMask \ 106 | PointerMotionMask \
123 | PointerMotionHintMask \
124 | StructureNotifyMask \ 107 | StructureNotifyMask \
125 | FocusChangeMask \ 108 | FocusChangeMask \
126 | LeaveWindowMask \ 109 | LeaveWindowMask \