aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.c
diff options
context:
space:
mode:
authorPaul Eggert2012-06-24 13:34:48 -0700
committerPaul Eggert2012-06-24 13:34:48 -0700
commitd188e26b1a235acbd679e3ad2f41cf7d2729ccba (patch)
treed3d1d5755af8d301f72576f74bdeda7d765e439f /src/process.c
parente86db54bb3dd41a106855b4f6caddcb4c0144e26 (diff)
downloademacs-d188e26b1a235acbd679e3ad2f41cf7d2729ccba.tar.gz
emacs-d188e26b1a235acbd679e3ad2f41cf7d2729ccba.zip
* process.c: Fix spelling and caps in comments.
Diffstat (limited to 'src/process.c')
-rw-r--r--src/process.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/process.c b/src/process.c
index aaf8693a62c..e39710078d2 100644
--- a/src/process.c
+++ b/src/process.c
@@ -4259,7 +4259,7 @@ wait_reading_process_output_1 (void)
4259 an additional duration to wait, measured in nanoseconds 4259 an additional duration to wait, measured in nanoseconds
4260 If TIME_LIMIT is zero, then: 4260 If TIME_LIMIT is zero, then:
4261 If NSECS == 0, there is no limit. 4261 If NSECS == 0, there is no limit.
4262 If NSECS > 0, the timeout consists of NSEC only. 4262 If NSECS > 0, the timeout consists of NSECS only.
4263 If NSECS < 0, gobble data immediately, as if TIME_LIMIT were negative. 4263 If NSECS < 0, gobble data immediately, as if TIME_LIMIT were negative.
4264 4264
4265 READ_KBD is a lisp value: 4265 READ_KBD is a lisp value:
@@ -6832,18 +6832,18 @@ extern int sys_select (int, SELECT_TYPE *, SELECT_TYPE *, SELECT_TYPE *,
6832 6832
6833 Wait for timeout to elapse and/or keyboard input to be available. 6833 Wait for timeout to elapse and/or keyboard input to be available.
6834 6834
6835 time_limit is: 6835 TIME_LIMIT is:
6836 timeout in seconds 6836 timeout in seconds
6837 If negative, gobble data immediately available but don't wait for any. 6837 If negative, gobble data immediately available but don't wait for any.
6838 6838
6839 nsec is: 6839 NSECS is:
6840 an additional duration to wait, measured in nanoseconds 6840 an additional duration to wait, measured in nanoseconds
6841 If TIME_LIMIT is zero, then: 6841 If TIME_LIMIT is zero, then:
6842 If NSEC == 0, there is no limit. 6842 If NSECS == 0, there is no limit.
6843 If NSEC > 0, the timeout consists of NSEC only. 6843 If NSECS > 0, the timeout consists of NSECS only.
6844 If NSECS < 0, gobble data immediately, as if TIME_LIMIT were negative. 6844 If NSECS < 0, gobble data immediately, as if TIME_LIMIT were negative.
6845 6845
6846 read_kbd is a Lisp_Object: 6846 READ_KBD is a Lisp_Object:
6847 0 to ignore keyboard input, or 6847 0 to ignore keyboard input, or
6848 1 to return when input is available, or 6848 1 to return when input is available, or
6849 -1 means caller will actually read the input, so don't throw to 6849 -1 means caller will actually read the input, so don't throw to
@@ -6852,7 +6852,7 @@ extern int sys_select (int, SELECT_TYPE *, SELECT_TYPE *, SELECT_TYPE *,
6852 see full version for other parameters. We know that wait_proc will 6852 see full version for other parameters. We know that wait_proc will
6853 always be NULL, since `subprocesses' isn't defined. 6853 always be NULL, since `subprocesses' isn't defined.
6854 6854
6855 do_display != 0 means redisplay should be done to show subprocess 6855 DO_DISPLAY != 0 means redisplay should be done to show subprocess
6856 output that arrives. 6856 output that arrives.
6857 6857
6858 Return true if we received input from any process. */ 6858 Return true if we received input from any process. */