diff options
author | Richard M. Stallman <rms@gnu.org> | 2001-10-30 18:34:21 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2001-10-30 18:34:21 +0000 |
commit | a064684d0184a06423a17de454f9d0f7e5c90617 (patch) | |
tree | 6678f716d776c29997cf1d6395f6e867a9a5d21b /src | |
parent | 31b5be122914bd11c20270ef13ae224461d3ab79 (diff) | |
download | emacs-a064684d0184a06423a17de454f9d0f7e5c90617.tar.gz |
(Finput_pending_p): Doc fix.
Diffstat (limited to 'src')
-rw-r--r-- | src/keyboard.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/keyboard.c b/src/keyboard.c index 5f94a281536..3e80849c03c 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -9489,8 +9489,9 @@ requeued_events_pending_p () DEFUN ("input-pending-p", Finput_pending_p, Sinput_pending_p, 0, 0, 0, - doc: /* t if command input is currently available with no waiting. -Actually, the value is nil only if we can be sure that no input is available. */) + doc: /* Return t if command input is currently available with no wait. +Actually, the value is nil only if we can be sure that no input is available; +if there is a doubt, the value is t. */) () { if (!NILP (Vunread_command_events) || unread_command_char != -1) |