aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert2011-05-04 23:31:14 -0700
committerPaul Eggert2011-05-04 23:31:14 -0700
commitc717b32678affe3864f0d5024a9de514c950214d (patch)
tree5e682fb44780734c00be9a203499b7a8651e560c /src/ChangeLog
parent852a74a59b12d505eba86a0aed46bfe8af7b9acf (diff)
downloademacs-c717b32678affe3864f0d5024a9de514c950214d.tar.gz
emacs-c717b32678affe3864f0d5024a9de514c950214d.zip
Revert to wraparound integer arithmetic, instead of going to float.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index ee2db310562..2b4f498a0b9 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -11,16 +11,6 @@
11 11
12 * term.c: Don't include <stdarg.h>, as <lisp.h> does that. 12 * term.c: Don't include <stdarg.h>, as <lisp.h> does that.
13 13
14 Arithmetic overflows now return float rather than wrapping around.
15 (Bug#8611).
16 * data.c: Include <intprops.h>.
17 (arith_driver): Use floating point if the accumulator would otherwise
18 go out of EMACS_INT range.
19 (arith_driver, Fadd1, Fsub1): Use floating point if the result is
20 out of Emacs fixnum range.
21 * bytecode.c (exec_byte_code): Likewise, for Bsub1, Badd1, Bnegate.
22 * floatfns.c (Fexpt): Likewise.
23
24 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork clobbering. 14 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork clobbering.
25 15
26 * process.c (Fformat_network_address): Fix typo: args2 -> *args2. 16 * process.c (Fformat_network_address): Fix typo: args2 -> *args2.