comparison src/keyboard.c @ 40522:dcd6a276da0d

(Finput_pending_p): Doc fix.
author Richard M. Stallman <rms@gnu.org>
date Tue, 30 Oct 2001 18:34:21 +0000
parents b656648ba424
children 1c539cb16416
comparison
equal deleted inserted replaced
40521:549e09fb7907 40522:dcd6a276da0d
9487 return (!NILP (Vunread_command_events) || unread_command_char != -1); 9487 return (!NILP (Vunread_command_events) || unread_command_char != -1);
9488 } 9488 }
9489 9489
9490 9490
9491 DEFUN ("input-pending-p", Finput_pending_p, Sinput_pending_p, 0, 0, 0, 9491 DEFUN ("input-pending-p", Finput_pending_p, Sinput_pending_p, 0, 0, 0,
9492 doc: /* t if command input is currently available with no waiting. 9492 doc: /* Return t if command input is currently available with no wait.
9493 Actually, the value is nil only if we can be sure that no input is available. */) 9493 Actually, the value is nil only if we can be sure that no input is available;
9494 if there is a doubt, the value is t. */)
9494 () 9495 ()
9495 { 9496 {
9496 if (!NILP (Vunread_command_events) || unread_command_char != -1) 9497 if (!NILP (Vunread_command_events) || unread_command_char != -1)
9497 return (Qt); 9498 return (Qt);
9498 9499