aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert2013-09-23 21:28:06 -0700
committerPaul Eggert2013-09-23 21:28:06 -0700
commit7be68de5d25998e7d15aaab800c40cad48eac846 (patch)
tree881c8cdf8c60ee5c11bb3f00c7e27c09e162142b /src/ChangeLog
parentd160dd0c71db061d819ce5ac337e4de8bd4f7d11 (diff)
downloademacs-7be68de5d25998e7d15aaab800c40cad48eac846.tar.gz
emacs-7be68de5d25998e7d15aaab800c40cad48eac846.zip
Some minor cleanups of recently-added bool vector code.
* conf_post.h (assume): Always return void. Use lint version only if GCC and MSC versions don't apply. * conf_post.h (assume): * data.c (USC_MSC_POPCOUNT, count_trailing_zero_bits): Depend on _MSC_VER, not __MSC_VER, for consistency with the rest of Emacs. * data.c (bool_vector_spare_mask, popcount_size_t_generic) (popcount_size_t_msc, popcount_size_t_gcc, popcount_size_t) (bool_vector_binop_driver, count_trailing_zero_bits) (size_t_to_host_endian): Now static, not static inline; the latter isn't needed with modern compilers and doesn't work with older compilers anyway.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 5676d3e8b9a..303eb4f9176 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,19 @@
12013-09-24 Paul Eggert <eggert@cs.ucla.edu> 12013-09-24 Paul Eggert <eggert@cs.ucla.edu>
2 2
3 Some minor cleanups of recently-added bool vector code.
4 * conf_post.h (assume): Always return void. Use lint version
5 only if GCC and MSC versions don't apply.
6 * conf_post.h (assume):
7 * data.c (USC_MSC_POPCOUNT, count_trailing_zero_bits):
8 Depend on _MSC_VER, not __MSC_VER, for consistency with
9 the rest of Emacs.
10 * data.c (bool_vector_spare_mask, popcount_size_t_generic)
11 (popcount_size_t_msc, popcount_size_t_gcc, popcount_size_t)
12 (bool_vector_binop_driver, count_trailing_zero_bits)
13 (size_t_to_host_endian): Now static, not static inline;
14 the latter isn't needed with modern compilers and doesn't
15 work with older compilers anyway.
16
3 * alloc.c (valgrind_p): Use bool for boolean. 17 * alloc.c (valgrind_p): Use bool for boolean.
4 18
52013-09-23 Dmitry Antipov <dmantipov@yandex.ru> 192013-09-23 Dmitry Antipov <dmantipov@yandex.ru>