comparison src/process.c @ 6569:9cde1228e2fa

Fix typos in comments.
author Karl Heuer <kwzh@gnu.org>
date Tue, 29 Mar 1994 04:57:16 +0000
parents df7438605e1e
children b1cde622fa65
comparison
equal deleted inserted replaced
6568:c87ae1f14148 6569:9cde1228e2fa
1705 READ_KBD is a lisp value: 1705 READ_KBD is a lisp value:
1706 0 to ignore keyboard input, or 1706 0 to ignore keyboard input, or
1707 1 to return when input is available, or 1707 1 to return when input is available, or
1708 -1 meaning caller will actually read the input, so don't throw to 1708 -1 meaning caller will actually read the input, so don't throw to
1709 the quit handler, or 1709 the quit handler, or
1710 a cons cell, meaning wait wait until its car is non-nil 1710 a cons cell, meaning wait until its car is non-nil
1711 (and gobble terminal input into the buffer if any arrives), or 1711 (and gobble terminal input into the buffer if any arrives), or
1712 a process object, meaning wait until something arrives from that 1712 a process object, meaning wait until something arrives from that
1713 process. The return value is true iff we read some input from 1713 process. The return value is true iff we read some input from
1714 that process. 1714 that process.
1715 1715
1927 1927
1928 /* Check for keyboard input */ 1928 /* Check for keyboard input */
1929 /* If there is any, return immediately 1929 /* If there is any, return immediately
1930 to give it higher priority than subprocesses */ 1930 to give it higher priority than subprocesses */
1931 1931
1932 /* We used to do his if wait_for_cell, 1932 /* We used to do this if wait_for_cell,
1933 but that caused infinite recursion in selection request events. */ 1933 but that caused infinite recursion in selection request events. */
1934 if ((XINT (read_kbd)) 1934 if ((XINT (read_kbd))
1935 && detect_input_pending ()) 1935 && detect_input_pending ())
1936 { 1936 {
1937 swallow_events (); 1937 swallow_events ();