aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1995-02-22 06:05:32 +0000
committerKarl Heuer1995-02-22 06:05:32 +0000
commitb90afe71c800954d6ec34e190992deff1ee7822e (patch)
tree180b953ca857853c5fc65aad759f6e6a77606ded
parent89d8f2460dab366b5066425462b41862c4d405c3 (diff)
downloademacs-b90afe71c800954d6ec34e190992deff1ee7822e.tar.gz
emacs-b90afe71c800954d6ec34e190992deff1ee7822e.zip
Update comments to reflect changes in xmenu.c.
-rw-r--r--src/termhooks.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/termhooks.h b/src/termhooks.h
index 9de8401341e..d86dd863794 100644
--- a/src/termhooks.h
+++ b/src/termhooks.h
@@ -249,7 +249,7 @@ enum event_kind
249 buffer_switch_event, /* A process filter has switched buffers. */ 249 buffer_switch_event, /* A process filter has switched buffers. */
250 delete_window_event, /* An X client said "delete this window". */ 250 delete_window_event, /* An X client said "delete this window". */
251 menu_bar_event, /* An event generated by the menu bar. 251 menu_bar_event, /* An event generated by the menu bar.
252 The frame_or_window field holds the 252 The frame_or_window field's cdr holds the
253 Lisp-level event value. 253 Lisp-level event value.
254 (Only the toolkit version uses these.) */ 254 (Only the toolkit version uses these.) */
255 iconify_event, /* An X client iconified this window. */ 255 iconify_event, /* An X client iconified this window. */
@@ -278,8 +278,8 @@ struct input_event {
278 278
279 /* This field is copied into a vector while the event is in the queue, 279 /* This field is copied into a vector while the event is in the queue,
280 so that garbage collections won't kill it. */ 280 so that garbage collections won't kill it. */
281 /* In a menu_bar_event, this holds the Lisp object 281 /* In a menu_bar_event, this is a cons cell whose car is the frame
282 that is the event's value. */ 282 and whose cdr is the Lisp object that is the event's value. */
283 Lisp_Object frame_or_window; 283 Lisp_Object frame_or_window;
284 284
285 int modifiers; /* See enum below for interpretation. */ 285 int modifiers; /* See enum below for interpretation. */