Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
28545f7c
Commit
28545f7c
authored
Mar 08, 2008
by
Andreas Schwab
Browse files
(struct Lisp_Process): Declare bit fields as unsigned.
parent
14cf0430
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
7 deletions
+11
-7
src/ChangeLog
src/ChangeLog
+4
-0
src/process.h
src/process.h
+7
-7
No files found.
src/ChangeLog
View file @
28545f7c
2008-03-08 Andreas Schwab <schwab@suse.de>
* process.h (struct Lisp_Process): Declare bit fields as unsigned.
2008-03-06 Jason Rumney <jasonr@gnu.org>
* w32font.c (w32_registry): Take font_type argument. Use ANSI
...
...
src/process.h
View file @
28545f7c
...
...
@@ -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
;
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment