aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert2011-06-17 01:14:30 -0700
committerPaul Eggert2011-06-17 01:14:30 -0700
commitd6202519ae0dfb7421b64f823a0aaa54e1fc5951 (patch)
tree9d4c2761e62feda73d0b7d1ad0e0c99424ad5976 /src/ChangeLog
parent67c36fce599fc28e5ae3eca371d034c600265dd2 (diff)
downloademacs-d6202519ae0dfb7421b64f823a0aaa54e1fc5951.tar.gz
emacs-d6202519ae0dfb7421b64f823a0aaa54e1fc5951.zip
* buffer.c: Include <verify.h>.
(init_buffer_once): Check at compile-time, not run-time.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index a82ba93320a..aa605cb7559 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,12 +1,14 @@
12011-06-17 Paul Eggert <eggert@cs.ucla.edu> 12011-06-17 Paul Eggert <eggert@cs.ucla.edu>
2 2
3 * buffer.c (struct sortvec.priority, struct sortstr.priority): 3 * buffer.c: Include <verify.h>.
4 (struct sortvec.priority, struct sortstr.priority):
4 Now EMACS_INT, not int. 5 Now EMACS_INT, not int.
5 (compare_overlays, cmp_for_strings): Avoid subtraction overflow. 6 (compare_overlays, cmp_for_strings): Avoid subtraction overflow.
6 (struct sortstr.size, record_overlay_string) 7 (struct sortstr.size, record_overlay_string)
7 (struct sortstrlist.size, struct sortlist.used): 8 (struct sortstrlist.size, struct sortlist.used):
8 Don't truncate size to int. 9 Don't truncate size to int.
9 (record_overlay_string): Check for size-calculation overflow. 10 (record_overlay_string): Check for size-calculation overflow.
11 (init_buffer_once): Check at compile-time, not run-time.
10 12
112011-06-16 Paul Eggert <eggert@cs.ucla.edu> 132011-06-16 Paul Eggert <eggert@cs.ucla.edu>
12 14