aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert2012-04-21 21:48:13 -0700
committerPaul Eggert2012-04-21 21:48:13 -0700
commite4d81efc58695c19154d5f6733d91172b4c3e5b7 (patch)
treea3e090515c7a6c7afb302b0bcc03c241da2a9585 /src/ChangeLog
parenta8b7caa345d8215468f558c771b703a3b89e2d77 (diff)
downloademacs-e4d81efc58695c19154d5f6733d91172b4c3e5b7.tar.gz
emacs-e4d81efc58695c19154d5f6733d91172b4c3e5b7.zip
* process.h (struct Lisp_Process): Members tick and update_tick
are now of type EMACS_INT, not int. * process.c (process_tick, update_tick): Use EMACS_INT, not int.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 336c175be5c..bdc70f54f29 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,8 @@
12012-04-22 Paul Eggert <eggert@cs.ucla.edu> 12012-04-22 Paul Eggert <eggert@cs.ucla.edu>
2 2
3 * process.h (struct Lisp_Process): Members tick and update_tick
4 are now of type EMACS_INT, not int.
5
3 Fix integer width and related bugs (Bug#9874). 6 Fix integer width and related bugs (Bug#9874).
4 * alloc.c (pure_bytes_used_lisp, pure_bytes_used_non_lisp): 7 * alloc.c (pure_bytes_used_lisp, pure_bytes_used_non_lisp):
5 (allocate_vectorlike, buffer_memory_full, struct sdata, SDATA_SIZE) 8 (allocate_vectorlike, buffer_memory_full, struct sdata, SDATA_SIZE)
@@ -569,6 +572,7 @@
569 (Fsignal_process): Simplify by avoiding a goto. 572 (Fsignal_process): Simplify by avoiding a goto.
570 Check for process-ids out of pid_t range rather than relying on 573 Check for process-ids out of pid_t range rather than relying on
571 undefined behavior. 574 undefined behavior.
575 (process_tick, update_tick): Use EMACS_INT, not int.
572 (Fformat_network_address, read_process_output, send_process) 576 (Fformat_network_address, read_process_output, send_process)
573 (Fprocess_send_region, status_notify): 577 (Fprocess_send_region, status_notify):
574 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough. 578 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.