diff options
| author | Andreas Schwab | 2008-03-08 15:55:51 +0000 |
|---|---|---|
| committer | Andreas Schwab | 2008-03-08 15:55:51 +0000 |
| commit | f2549aa0236872e4f0efd29eebc49ccce29f5408 (patch) | |
| tree | 32c572d06bac88414ec97c5f723e352908d9afee /src | |
| parent | 8b7d6d40e542258e584c58694bd06fa4b598eb9c (diff) | |
| download | emacs-f2549aa0236872e4f0efd29eebc49ccce29f5408.tar.gz emacs-f2549aa0236872e4f0efd29eebc49ccce29f5408.zip | |
(struct Lisp_Process): Declare bit field as unsigned.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/process.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index b2310ae76c2..b00ca9a32a8 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2008-03-08 Andreas Schwab <schwab@suse.de> | ||
| 2 | |||
| 3 | * process.h (struct Lisp_Process): Declare bit field as unsigned. | ||
| 4 | |||
| 1 | 2008-03-07 Stefan Monnier <monnier@iro.umontreal.ca> | 5 | 2008-03-07 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 6 | ||
| 3 | * fileio.c (Fsubstitute_in_file_name): Fix up computation of maximum | 7 | * fileio.c (Fsubstitute_in_file_name): Fix up computation of maximum |
diff --git a/src/process.h b/src/process.h index 7a212245724..3be8686b830 100644 --- a/src/process.h +++ b/src/process.h | |||
| @@ -123,7 +123,7 @@ struct Lisp_Process | |||
| 123 | This is to avoid consing in a signal handler. The `raw_status_new' | 123 | This is to avoid consing in a signal handler. The `raw_status_new' |
| 124 | flag indicates that `raw_status' contains a new status that still | 124 | flag indicates that `raw_status' contains a new status that still |
| 125 | needs to be synced to `status'. */ | 125 | needs to be synced to `status'. */ |
| 126 | int raw_status_new : 1; | 126 | unsigned int raw_status_new : 1; |
| 127 | int raw_status; | 127 | int raw_status; |
| 128 | }; | 128 | }; |
| 129 | 129 | ||