mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-17 18:37:33 +00:00
(struct Lisp_Process): Declare bit field as unsigned.
This commit is contained in:
parent
8b7d6d40e5
commit
f2549aa023
2 changed files with 5 additions and 1 deletions
|
|
@ -1,3 +1,7 @@
|
|||
2008-03-08 Andreas Schwab <schwab@suse.de>
|
||||
|
||||
* process.h (struct Lisp_Process): Declare bit field as unsigned.
|
||||
|
||||
2008-03-07 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
* fileio.c (Fsubstitute_in_file_name): Fix up computation of maximum
|
||||
|
|
|
|||
|
|
@ -123,7 +123,7 @@ struct Lisp_Process
|
|||
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;
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue