diff options
| author | Paul Eggert | 2012-06-17 23:58:00 -0700 |
|---|---|---|
| committer | Paul Eggert | 2012-06-17 23:58:00 -0700 |
| commit | 7ea2b33947b401d506d10bf47721278a2b174410 (patch) | |
| tree | 5480d85adcb9a888e3d39701f86859e65794d716 /src/ChangeLog | |
| parent | 24b0cff0ba42f6600db603cc2a4a6736fa5e7e92 (diff) | |
| download | emacs-7ea2b33947b401d506d10bf47721278a2b174410.tar.gz emacs-7ea2b33947b401d506d10bf47721278a2b174410.zip | |
Fix recently-introduced process.c problems found by static checking.
* process.c (write_queue_push, write_queue_pop, send_process):
Use ptrdiff_t, not int or EMACS_INT, for buffer lengths and offsets.
(write_queue_pop): Fix pointer signedness problem.
(send_process): Remove unused local.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 309f4447dbc..de472ab51dd 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,11 @@ | |||
| 1 | 2012-06-18 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | Fix recently-introduced process.c problems found by static checking. | ||
| 4 | * process.c (write_queue_push, write_queue_pop, send_process): | ||
| 5 | Use ptrdiff_t, not int or EMACS_INT, for buffer lengths and offsets. | ||
| 6 | (write_queue_pop): Fix pointer signedness problem. | ||
| 7 | (send_process): Remove unused local. | ||
| 8 | |||
| 1 | 2012-06-17 Chong Yidong <cyd@gnu.org> | 9 | 2012-06-17 Chong Yidong <cyd@gnu.org> |
| 2 | 10 | ||
| 3 | * xdisp.c (redisplay_internal): No need to redisplay terminal | 11 | * xdisp.c (redisplay_internal): No need to redisplay terminal |