aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggert2011-05-03 11:57:49 -0700
committerPaul Eggert2011-05-03 11:57:49 -0700
commit59dba0f4d83541ca638492d137db7723d47faa1e (patch)
treeb30b0732eac4b73f67ba69f06f489f364064cde8
parent680186416d09efb9c3b4599ee848e3bb9fe184b6 (diff)
downloademacs-59dba0f4d83541ca638492d137db7723d47faa1e.tar.gz
emacs-59dba0f4d83541ca638492d137db7723d47faa1e.zip
Add Bug#.
-rw-r--r--doc/lispref/ChangeLog2
-rw-r--r--etc/ChangeLog2
-rw-r--r--src/ChangeLog1
3 files changed, 3 insertions, 2 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index a48fa634cb7..bca76b8a23c 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -3,7 +3,7 @@
3 * numbers.texi (Integer Basics): Large integers are treated as floats. 3 * numbers.texi (Integer Basics): Large integers are treated as floats.
4 (Arithmetic Operations, Math Functions): Large integers go to 4 (Arithmetic Operations, Math Functions): Large integers go to
5 floats instead of wrapping around. 5 floats instead of wrapping around.
6 * objects.texi (Integer Type): Likewise. 6 * objects.texi (Integer Type): Likewise. (Bug#8611)
7 7
82011-04-30 Lars Magne Ingebrigtsen <larsi@gnus.org> 82011-04-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
9 9
diff --git a/etc/ChangeLog b/etc/ChangeLog
index bd91ccc1c39..bba73855d6e 100644
--- a/etc/ChangeLog
+++ b/etc/ChangeLog
@@ -1,7 +1,7 @@
12011-05-03 Paul Eggert <eggert@cs.ucla.edu> 12011-05-03 Paul Eggert <eggert@cs.ucla.edu>
2 2
3 * NEWS: Integer overflow now yields floating-point instead of 3 * NEWS: Integer overflow now yields floating-point instead of
4 wrapping around. 4 wrapping around. (Bug#8611)
5 5
62011-05-03 Leo Liu <sdl.web@gmail.com> 62011-05-03 Leo Liu <sdl.web@gmail.com>
7 7
diff --git a/src/ChangeLog b/src/ChangeLog
index 26b3af3225c..0bcad1118b6 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,6 +1,7 @@
12011-05-03 Paul Eggert <eggert@cs.ucla.edu> 12011-05-03 Paul Eggert <eggert@cs.ucla.edu>
2 2
3 Arithmetic overflows now return float rather than wrapping around. 3 Arithmetic overflows now return float rather than wrapping around.
4 (Bug#8611).
4 * data.c: Include <intprops.h>. 5 * data.c: Include <intprops.h>.
5 (arith_driver): Use floating point if the accumulator would otherwise 6 (arith_driver): Use floating point if the accumulator would otherwise
6 go out of EMACS_INT range. 7 go out of EMACS_INT range.