diff options
Diffstat (limited to 'src/process.h')
| -rw-r--r-- | src/process.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/process.h b/src/process.h index 37d220e987c..00fd6be9e49 100644 --- a/src/process.h +++ b/src/process.h | |||
| @@ -138,23 +138,23 @@ struct Lisp_Process | |||
| 138 | 0 = nil, 1 = t, 2 = other. */ | 138 | 0 = nil, 1 = t, 2 = other. */ |
| 139 | unsigned int adaptive_read_buffering : 2; | 139 | unsigned int adaptive_read_buffering : 2; |
| 140 | /* Skip reading this process on next read. */ | 140 | /* Skip reading this process on next read. */ |
| 141 | unsigned int read_output_skip : 1; | 141 | bool_bf read_output_skip : 1; |
| 142 | /* Non-nil means kill silently if Emacs is exited. | 142 | /* True means kill silently if Emacs is exited. |
| 143 | This is the inverse of the `query-on-exit' flag. */ | 143 | This is the inverse of the `query-on-exit' flag. */ |
| 144 | unsigned int kill_without_query : 1; | 144 | bool_bf kill_without_query : 1; |
| 145 | /* Non-nil if communicating through a pty. */ | 145 | /* True if communicating through a pty. */ |
| 146 | unsigned int pty_flag : 1; | 146 | bool_bf pty_flag : 1; |
| 147 | /* Flag to set coding-system of the process buffer from the | 147 | /* Flag to set coding-system of the process buffer from the |
| 148 | coding_system used to decode process output. */ | 148 | coding_system used to decode process output. */ |
| 149 | unsigned int inherit_coding_system_flag : 1; | 149 | bool_bf inherit_coding_system_flag : 1; |
| 150 | /* Whether the process is alive, i.e., can be waited for. Running | 150 | /* Whether the process is alive, i.e., can be waited for. Running |
| 151 | processes can be waited for, but exited and fake processes cannot. */ | 151 | processes can be waited for, but exited and fake processes cannot. */ |
| 152 | unsigned int alive : 1; | 152 | bool_bf alive : 1; |
| 153 | /* Record the process status in the raw form in which it comes from `wait'. | 153 | /* Record the process status in the raw form in which it comes from `wait'. |
| 154 | This is to avoid consing in a signal handler. The `raw_status_new' | 154 | This is to avoid consing in a signal handler. The `raw_status_new' |
| 155 | flag indicates that `raw_status' contains a new status that still | 155 | flag indicates that `raw_status' contains a new status that still |
| 156 | needs to be synced to `status'. */ | 156 | needs to be synced to `status'. */ |
| 157 | unsigned int raw_status_new : 1; | 157 | bool_bf raw_status_new : 1; |
| 158 | int raw_status; | 158 | int raw_status; |
| 159 | 159 | ||
| 160 | #ifdef HAVE_GNUTLS | 160 | #ifdef HAVE_GNUTLS |
| @@ -164,7 +164,7 @@ struct Lisp_Process | |||
| 164 | gnutls_anon_client_credentials_t gnutls_anon_cred; | 164 | gnutls_anon_client_credentials_t gnutls_anon_cred; |
| 165 | int gnutls_log_level; | 165 | int gnutls_log_level; |
| 166 | int gnutls_handshakes_tried; | 166 | int gnutls_handshakes_tried; |
| 167 | unsigned int gnutls_p : 1; | 167 | bool_bf gnutls_p : 1; |
| 168 | #endif | 168 | #endif |
| 169 | }; | 169 | }; |
| 170 | 170 | ||