diff options
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index bd20439ccc7..7da9270555a 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -53,10 +53,12 @@ | |||
| 53 | (struct buffer_text, struct buffer): | 53 | (struct buffer_text, struct buffer): |
| 54 | Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough. | 54 | Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough. |
| 55 | Use EMACS_INT, not int, where int might not be wide enough. | 55 | Use EMACS_INT, not int, where int might not be wide enough. |
| 56 | * bytecode.c (exec_byte_code): Use ptrdiff_t, not int, to avoid | 56 | * bytecode.c (unmark_byte_stack, exec_byte_code): Use ptrdiff_t, |
| 57 | needless 32-bit limit on 64-bit hosts. Remove unnecessary | 57 | not int, to avoid needless 32-bit limit on 64-bit hosts. |
| 58 | memory-full test. Use EMACS_INT, not ptrdiff_t or int, where | 58 | (exec_byte_code): Use tighter memory-full test, one that checks |
| 59 | ptrdiff_t or int might not be wide enough. | 59 | for alloca overflow. Don't compute the address of the object just |
| 60 | before an array, as that's not portable. Use EMACS_INT, not | ||
| 61 | ptrdiff_t or int, where ptrdiff_t or int might not be wide enough. | ||
| 60 | * callint.c (Fcall_interactively): | 62 | * callint.c (Fcall_interactively): |
| 61 | Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts. | 63 | Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts. |
| 62 | * callproc.c (call_process_kill, Fcall_process): | 64 | * callproc.c (call_process_kill, Fcall_process): |