aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert2014-01-02 22:47:27 -0800
committerPaul Eggert2014-01-02 22:47:27 -0800
commit56a0e35287e6931759c40c581cc715d9cbb78409 (patch)
treeff589caa626405dcef2c759c7964ca4165fdb73b /src/ChangeLog
parented0ca4a51a373fc23037436ccc467a982b9fcae8 (diff)
downloademacs-56a0e35287e6931759c40c581cc715d9cbb78409.tar.gz
emacs-56a0e35287e6931759c40c581cc715d9cbb78409.zip
Port to C89.
* data.c (arithcompare_driver): * fileio.c (Fcar_less_than_car): * fns.c (internal_equal): * frame.c (delete_frame): * lisp.h (enum More_Lisp_Bits): * lread.c (read1): Avoid C99 constructs that don't work in C89. * data.c (ULL_MAX, count_trailing_zeros_ll): New macros, to port to C89, which doesn't have 'long long'. (count_trailing_zero_bits): Use them.
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 1f68372f31a..0a4bd05bc06 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,17 @@
12014-01-03 Paul Eggert <eggert@cs.ucla.edu>
2
3 Port to C89.
4 * data.c (arithcompare_driver):
5 * fileio.c (Fcar_less_than_car):
6 * fns.c (internal_equal):
7 * frame.c (delete_frame):
8 * lisp.h (enum More_Lisp_Bits):
9 * lread.c (read1):
10 Avoid C99 constructs that don't work in C89.
11 * data.c (ULL_MAX, count_trailing_zeros_ll): New macros,
12 to port to C89, which doesn't have 'long long'.
13 (count_trailing_zero_bits): Use them.
14
12014-01-03 Chong Yidong <cyd@gnu.org> 152014-01-03 Chong Yidong <cyd@gnu.org>
2 16
3 * doc.c (Fdocumentation): Remove dynamic-docstring-function. 17 * doc.c (Fdocumentation): Remove dynamic-docstring-function.