aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2000-02-23 12:52:38 +0000
committerGerd Moellmann2000-02-23 12:52:38 +0000
commit723e779c56c966fc40ffd0d8952301381457bf18 (patch)
tree2cf206d33a0d82e6e8b6b02ca2064306cf0c0418
parent342858a566fc88254094fb8f67ecc8ad72a139e9 (diff)
downloademacs-723e779c56c966fc40ffd0d8952301381457bf18.tar.gz
emacs-723e779c56c966fc40ffd0d8952301381457bf18.zip
*** empty log message ***
-rw-r--r--etc/NEWS3
-rw-r--r--src/ChangeLog3
2 files changed, 6 insertions, 0 deletions
diff --git a/etc/NEWS b/etc/NEWS
index aff620897fa..c73628cd5d9 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -973,6 +973,9 @@ Note that +++ before an item means the Lisp manual has been updated.
973When you add a new item, please add it without either +++ or --- 973When you add a new item, please add it without either +++ or ---
974so I will know I still need to look at it -- rms. 974so I will know I still need to look at it -- rms.
975 975
976** The function string-to-number now returns a float for numbers
977that don't fit into a Lisp integer.
978
976** The variable keyword-symbols-constants-flag has been removed. 979** The variable keyword-symbols-constants-flag has been removed.
977Keywords are now always considered constants. 980Keywords are now always considered constants.
978 981
diff --git a/src/ChangeLog b/src/ChangeLog
index 2deaf4b2468..bb90a4835b7 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,8 @@
12000-02-23 Gerd Moellmann <gerd@gnu.org> 12000-02-23 Gerd Moellmann <gerd@gnu.org>
2 2
3 * data.c (Fstring_to_number): If number is greater than what
4 fits into an integer, return a float.
5
3 * eval.c (specbind): Remove references to 6 * eval.c (specbind): Remove references to
4 keyword_symbols_constant_flag. 7 keyword_symbols_constant_flag.
5 8