aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert2011-04-18 16:32:38 -0700
committerPaul Eggert2011-04-18 16:32:38 -0700
commit5e073ec7384c432e42a8affeeb6d6906588f2af9 (patch)
tree0f36f403e54e206165f1893f3139a2c22c42025d /src/ChangeLog
parentd0f4e1f5ac162d9c32381c65a0bc7b456e189826 (diff)
downloademacs-5e073ec7384c432e42a8affeeb6d6906588f2af9.tar.gz
emacs-5e073ec7384c432e42a8affeeb6d6906588f2af9.zip
* frame.c (frame_name_fnn_p): Get rid of strtol, which isn't right
here, since it parses constructs like leading '-' and spaces, which are not wanted; and it overflows with large numbers. Instead, simply match F[0-9]+, which is what is wanted anyway.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 3ca41d7b51b..42c7d06168f 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,10 @@
12011-04-18 Paul Eggert <eggert@cs.ucla.edu> 12011-04-18 Paul Eggert <eggert@cs.ucla.edu>
2 2
3 * frame.c (frame_name_fnn_p): Get rid of strtol, which isn't right
4 here, since it parses constructs like leading '-' and spaces,
5 which are not wanted; and it overflows with large numbers.
6 Instead, simply match F[0-9]+, which is what is wanted anyway.
7
3 * alloc.c: Remove unportable assumptions about struct layout. 8 * alloc.c: Remove unportable assumptions about struct layout.
4 (SDATA_SELECTOR, SDATA_DATA_OFFSET): New macros. 9 (SDATA_SELECTOR, SDATA_DATA_OFFSET): New macros.
5 (SDATA_OF_STRING, SDATA_SIZE, allocate_string_data): 10 (SDATA_OF_STRING, SDATA_SIZE, allocate_string_data):