aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 8e22e4f7cf1..753e123378c 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,22 @@
12013-10-07 Paul Eggert <eggert@cs.ucla.edu>
2
3 Improve support for popcount and counting trailing zeros (Bug#15550).
4 * data.c: Include <count-one-bits.h>, <count-trailing-zeros.h>.
5 (USE_MSC_POPCOUNT, POPCOUNT_STATIC_INLINE)
6 (NEED_GENERIC_POPCOUNT, popcount_size_t_generic)
7 (popcount_size_t_msc, popcount_size_t_gcc):
8 Remove; now done by Gnulib.
9 (popcount_size_t): Now a macro that defers to Gnulib.
10 (count_trailing_zero_bits): Return int, for consistency with
11 Gnulib and because Emacs prefers signed to unsigned int.
12 Don't assume that size_t is either unsigned int or unsigned long
13 or unsigned long long.
14 (size_t_to_host_endian): Do not assume that size_t is either
15 exactly 32 or exactly 64 bits wide.
16 * lisp.h (BITS_PER_SIZE_T): Define consistently with BITS_PER_LONG
17 etc., so that it's now an enum constant, not a macro.
18 No need to assume that it's either 32 or 64.
19
12013-10-07 Jan Djärv <jan.h.d@swipnet.se> 202013-10-07 Jan Djärv <jan.h.d@swipnet.se>
2 21
3 * nsterm.m (windowDidEnterFullScreen:): setPresentationOptions only 22 * nsterm.m (windowDidEnterFullScreen:): setPresentationOptions only