comparison src/event-stream.c @ 120:cca96a509cfe r20-1b12

Import from CVS: tag r20-1b12
author cvs
date Mon, 13 Aug 2007 09:25:29 +0200
parents 9f59509498e1
children 6608ceec7cf8
comparison
equal deleted inserted replaced
119:d101af7320b8 120:cca96a509cfe
4185 vars_of_event_Xt (); 4185 vars_of_event_Xt ();
4186 #endif 4186 #endif
4187 #if defined (DEBUG_TTY_EVENT_STREAM) || !defined (HAVE_X_WINDOWS) 4187 #if defined (DEBUG_TTY_EVENT_STREAM) || !defined (HAVE_X_WINDOWS)
4188 vars_of_event_tty (); 4188 vars_of_event_tty ();
4189 #endif 4189 #endif
4190 #ifdef HAVE_NEXTSTEP
4191 vars_of_event_ns ();
4192 #endif
4193 4190
4194 4191
4195 recent_keys_ring_index = 0; 4192 recent_keys_ring_index = 0;
4196 recent_keys_ring = make_vector (RECENT_KEYS_SIZE, Qnil); 4193 recent_keys_ring = make_vector (RECENT_KEYS_SIZE, Qnil);
4197 staticpro (&recent_keys_ring); 4194 staticpro (&recent_keys_ring);
4516 #ifdef HAVE_X_WINDOWS 4513 #ifdef HAVE_X_WINDOWS
4517 if (!strcmp (display_use, "x")) 4514 if (!strcmp (display_use, "x"))
4518 init_event_Xt_late (); 4515 init_event_Xt_late ();
4519 else 4516 else
4520 #endif 4517 #endif
4521 #ifdef HAVE_NEXTSTEP
4522 if (!strcmp (display_use, "ns"))
4523 init_event_ns_late ();
4524 else
4525 #endif
4526 { 4518 {
4527 /* For TTY's, use the Xt event loop if we can; it allows 4519 /* For TTY's, use the Xt event loop if we can; it allows
4528 us to later open an X connection. */ 4520 us to later open an X connection. */
4529 #if defined (HAVE_X_WINDOWS) && !defined (DEBUG_TTY_EVENT_STREAM) 4521 #if defined (HAVE_X_WINDOWS) && !defined (DEBUG_TTY_EVENT_STREAM)
4530 init_event_Xt_late (); 4522 init_event_Xt_late ();