aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert2011-06-14 13:57:33 -0700
committerPaul Eggert2011-06-14 13:57:33 -0700
commit86fe5cfe4de95a44b949db9be105e78497318804 (patch)
tree4f2026c11792c0d544be36da5e9289010a8a04a8 /src/ChangeLog
parent80e88859ec7b69bb88e76e9d23c8dc16151bd836 (diff)
downloademacs-86fe5cfe4de95a44b949db9be105e78497318804.tar.gz
emacs-86fe5cfe4de95a44b949db9be105e78497318804.zip
* fns.c (next_almost_prime): Don't return a multiple of 3 or 5.
The previous code was bogus. For example, next_almost_prime (32) returned 39, which is undesirable as it is a multiple of 3; and next_almost_prime (24) returned 25, which is a multiple of 5 so why was the code bothering to check for multiples of 7?
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 54fe58d1118..7bd1d47b328 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,11 @@
12011-06-14 Paul Eggert <eggert@cs.ucla.edu> 12011-06-14 Paul Eggert <eggert@cs.ucla.edu>
2 2
3 * fns.c (next_almost_prime): Don't return a multiple of 3 or 5.
4 The previous code was bogus. For example, next_almost_prime (32)
5 returned 39, which is undesirable as it is a multiple of 3; and
6 next_almost_prime (24) returned 25, which is a multiple of 5 so
7 why was the code bothering to check for multiples of 7?
8
3 * bytecode.c (exec_byte_code): Use ptrdiff_t, not int, for vector length. 9 * bytecode.c (exec_byte_code): Use ptrdiff_t, not int, for vector length.
4 10
5 * eval.c, doprnt.c (SIZE_MAX): Remove; inttypes.h defines this now. 11 * eval.c, doprnt.c (SIZE_MAX): Remove; inttypes.h defines this now.