aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert2013-10-16 18:02:32 -0700
committerPaul Eggert2013-10-16 18:02:32 -0700
commitf2752e013d24133b645d60b226579f8ae9f1587d (patch)
tree0acb15dc969d0fa34554a6df0d407708d22f8d45 /src/ChangeLog
parent7a550bbb1a6be5a4a562e5c8aacee96014a985a9 (diff)
downloademacs-f2752e013d24133b645d60b226579f8ae9f1587d.tar.gz
emacs-f2752e013d24133b645d60b226579f8ae9f1587d.zip
bool vector int width fixes
* data.c (bool_vector_spare_mask, Fbool_vector_count_matches) (Fbool_vector_count_matches_at): Use EMACS_INT, not ptrdiff_t, to record bit counts, as a bit count can exceed PTRDIFF_MAX, at least in theory. (Fbool_vector_count_matches_at): Use int, not ptrdiff_t, to record a value that can't exceed INT_MAX.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index b0774188c10..2e175a723dc 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,13 @@
12013-10-17 Paul Eggert <eggert@cs.ucla.edu>
2
3 bool vector int width fixes
4 * data.c (bool_vector_spare_mask, Fbool_vector_count_matches)
5 (Fbool_vector_count_matches_at):
6 Use EMACS_INT, not ptrdiff_t, to record bit counts, as a bit count
7 can exceed PTRDIFF_MAX, at least in theory.
8 (Fbool_vector_count_matches_at):
9 Use int, not ptrdiff_t, to record a value that can't exceed INT_MAX.
10
12013-10-16 Paul Eggert <eggert@cs.ucla.edu> 112013-10-16 Paul Eggert <eggert@cs.ucla.edu>
2 12
3 * process.h (conv_sockaddr_to_lisp): New decl, for newly-extern func. 13 * process.h (conv_sockaddr_to_lisp): New decl, for newly-extern func.