diff options
Diffstat (limited to 'src/process.h')
| -rw-r--r-- | src/process.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/process.h b/src/process.h index 392b661ce69..92baf0c4cb9 100644 --- a/src/process.h +++ b/src/process.h | |||
| @@ -156,8 +156,9 @@ struct Lisp_Process | |||
| 156 | /* True means kill silently if Emacs is exited. | 156 | /* True means kill silently if Emacs is exited. |
| 157 | This is the inverse of the `query-on-exit' flag. */ | 157 | This is the inverse of the `query-on-exit' flag. */ |
| 158 | bool_bf kill_without_query : 1; | 158 | bool_bf kill_without_query : 1; |
| 159 | /* True if communicating through a pty. */ | 159 | /* True if communicating through a pty for input or output. */ |
| 160 | bool_bf pty_flag : 1; | 160 | bool_bf pty_in : 1; |
| 161 | bool_bf pty_out : 1; | ||
| 161 | /* Flag to set coding-system of the process buffer from the | 162 | /* Flag to set coding-system of the process buffer from the |
| 162 | coding_system used to decode process output. */ | 163 | coding_system used to decode process output. */ |
| 163 | bool_bf inherit_coding_system_flag : 1; | 164 | bool_bf inherit_coding_system_flag : 1; |