comparison src/signal.c @ 380:8626e4521993 r21-2-5

Import from CVS: tag r21-2-5
author cvs
date Mon, 13 Aug 2007 11:07:10 +0200
parents 7df0dd720c89
children 2f8bb876ab1d
comparison
equal deleted inserted replaced
379:76b7d63099ad 380:8626e4521993
353 DEFUN ("waiting-for-user-input-p", Fwaiting_for_user_input_p, 0, 0, 0, /* 353 DEFUN ("waiting-for-user-input-p", Fwaiting_for_user_input_p, 0, 0, 0, /*
354 Return non-nil if XEmacs is waiting for input from the user. 354 Return non-nil if XEmacs is waiting for input from the user.
355 This is intended for use by asynchronous timeout callbacks and by 355 This is intended for use by asynchronous timeout callbacks and by
356 asynchronous process output filters and sentinels (not yet implemented 356 asynchronous process output filters and sentinels (not yet implemented
357 in XEmacs). It will always be nil if XEmacs is not inside of 357 in XEmacs). It will always be nil if XEmacs is not inside of
358 an asynchronout timeout or process callback. 358 an asynchronous timeout or process callback.
359 */ 359 */
360 ()) 360 ())
361 { 361 {
362 return waiting_for_user_input_p ? Qt : Qnil; 362 return waiting_for_user_input_p ? Qt : Qnil;
363 } 363 }