summaryrefslogtreecommitdiff
path: root/src/process.h
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@suse.de>2008-03-08 15:53:51 +0000
committerAndreas Schwab <schwab@suse.de>2008-03-08 15:53:51 +0000
commit28545f7cd8157477282a751a97562f4af424eb4f (patch)
tree2e0a9d48fe5ff9ab1640a2ff2f0d9c04a82b69c1 /src/process.h
parent14cf0430e43b65cadc93be549344600fc722dd3e (diff)
(struct Lisp_Process): Declare bit fields as unsigned.
Diffstat (limited to 'src/process.h')
-rw-r--r--src/process.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/process.h b/src/process.h
index 2b9f7b2727..dccb0cd2af 100644
--- a/src/process.h
+++ b/src/process.h
@@ -102,28 +102,28 @@ struct Lisp_Process
/* Should we delay reading output from this process.
Initialized from `Vprocess_adaptive_read_buffering'.
0 = nil, 1 = t, 2 = other. */
- int adaptive_read_buffering : 2;
+ unsigned int adaptive_read_buffering : 2;
/* Skip reading this process on next read. */
- int read_output_skip : 1;
+ unsigned int read_output_skip : 1;
/* Non-nil means kill silently if Emacs is exited.
This is the inverse of the `query-on-exit' flag. */
- int kill_without_query : 1;
+ unsigned int kill_without_query : 1;
/* Non-nil if communicating through a pty. */
- int pty_flag : 1;
+ unsigned int pty_flag : 1;
/* Flag to set coding-system of the process buffer from the
coding_system used to decode process output. */
- int inherit_coding_system_flag : 1;
+ unsigned int inherit_coding_system_flag : 1;
/* Flag to decide the multibyteness of a string given to the
filter (if any). It is initialized to the value of
`default-enable-multibyte-characters' when the process is
generated, and can be changed by the function
`set-process-filter-multibyte'. */
- int filter_multibyte : 1;
+ unsigned int filter_multibyte : 1;
/* Record the process status in the raw form in which it comes from `wait'.
This is to avoid consing in a signal handler. The `raw_status_new'
flag indicates that `raw_status' contains a new status that still
needs to be synced to `status'. */
- int raw_status_new : 1;
+ unsigned int raw_status_new : 1;
int raw_status;
};