aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert2011-06-14 13:09:52 -0700
committerPaul Eggert2011-06-14 13:09:52 -0700
commit4a2f0ad6c1725a6858c3f02add438e8323bb4c7d (patch)
tree304af7c10fbbdef679242c3152082ca5b50f0af0 /src/ChangeLog
parente8f2a944716884ba72b9ef3a49db2d5bca428ac9 (diff)
downloademacs-4a2f0ad6c1725a6858c3f02add438e8323bb4c7d.tar.gz
emacs-4a2f0ad6c1725a6858c3f02add438e8323bb4c7d.zip
* eval.c, doprnt.c (SIZE_MAX): Remove; inttypes.h defines this now.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index dc8f983c870..275d7e08a76 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,11 +1,13 @@
12011-06-14 Paul Eggert <eggert@cs.ucla.edu> 12011-06-14 Paul Eggert <eggert@cs.ucla.edu>
2 2
3 * eval.c, doprnt.c (SIZE_MAX): Remove; inttypes.h defines this now.
4
3 Variadic C functions now count arguments with ptrdiff_t. 5 Variadic C functions now count arguments with ptrdiff_t.
4 This partly undoes my 2011-03-30 change, which replaced int with size_t. 6 This partly undoes my 2011-03-30 change, which replaced int with size_t.
5 Back then I didn't know that the Emacs coding style prefers signed int. 7 Back then I didn't know that the Emacs coding style prefers signed int.
6 Also, in the meantime I found a few more instances where arguments 8 Also, in the meantime I found a few more instances where arguments
7 were being counted with int, which may be too narrow, or EMACS_INT, which 9 were being counted with int, which may truncate counts on 64-bit
8 may be too wide. 10 machines, or EMACS_INT, which may be unnecessarily wide.
9 * lisp.h (struct Lisp_Subr.function.aMANY) 11 * lisp.h (struct Lisp_Subr.function.aMANY)
10 (DEFUN_ARGS_MANY, internal_condition_case_n, safe_call): 12 (DEFUN_ARGS_MANY, internal_condition_case_n, safe_call):
11 Arg counts are now ptrdiff_t, not size_t. 13 Arg counts are now ptrdiff_t, not size_t.