Mercurial > emacs
changeset 80304:842d7b2745f7
(struct Lisp_Process): Declare bit field as unsigned.
author | Andreas Schwab <schwab@suse.de> |
---|---|
date | Sat, 08 Mar 2008 15:55:51 +0000 |
parents | bced54bea5b4 |
children | 7d73fa3b38be |
files | src/ChangeLog src/process.h |
diffstat | 2 files changed, 5 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/ChangeLog Sat Mar 08 15:53:31 2008 +0000 +++ b/src/ChangeLog Sat Mar 08 15:55:51 2008 +0000 @@ -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
--- a/src/process.h Sat Mar 08 15:53:31 2008 +0000 +++ b/src/process.h Sat Mar 08 15:55:51 2008 +0000 @@ -123,7 +123,7 @@ 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; };