changeset 28166:f3ea89b2cc47

*** empty log message ***
author Gerd Moellmann <gerd@gnu.org>
date Thu, 16 Mar 2000 13:24:56 +0000
parents 9a61aec440a7
children cb25a24ec3e1
files etc/NEWS src/ChangeLog
diffstat 2 files changed, 36 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/etc/NEWS	Thu Mar 16 13:23:06 2000 +0000
+++ b/etc/NEWS	Thu Mar 16 13:24:56 2000 +0000
@@ -8,6 +8,14 @@
 
 * Installation Changes in Emacs 21.1
 
+** `movemail' defaults to supporting POP.  You can turn this off using
+the --without-pop configure option, should that be necessary.
+
+** There are new configure options associated with the support for
+images and toolkit scrollbars.  Use the --help option to list them.
+
+* Changes in Emacs 21.1
+
 ** Emacs now refuses to load compiled Lisp files which weren't
 compiled with Emacs.  Set `load-dangerous-libraries' to t to change
 this behavior.
@@ -61,14 +69,6 @@
 
   emacs.privateColormap: true
 
-** `movemail' defaults to supporting POP.  You can turn this off using
-the --without-pop configure option, should that be necessary.
-
-** There are new configure options associated with the support for
-images and toolkit scrollbars.  Use the --help option to list them.
-
-* Changes in Emacs 21.1
-
 ** The menu bar configuration has changed.  The new configuration is
 more CUA-compliant.  The most significant change is that Options is
 now a separate menu-bar item, with Mule and Customize as its submenus.
@@ -1053,6 +1053,34 @@
 When you add a new item, please add it without either +++ or ---
 so I will know I still need to look at it -- rms.
 
+** Emacs' reader supports CL read syntax for integers in bases
+other than 10.
+
+*** `#BINTEGER' or `#bINTEGER' reads INTEGER in binary (radix 2).
+INTEGER optionally contains a sign.
+
+  #b1111 
+    => 15
+  #b-1111 
+    => -15
+
+*** `#OINTEGER' or `#oINTEGER' reads INTEGER in octal (radix 8).
+
+  #o666 
+    => 438
+
+*** `#XINTEGER' or `#xINTEGER' reads INTEGER in hexadecimal (radix 16).
+
+  #xbeef 
+    => 48815
+
+*** `#RADIXrINTEGER' reads INTEGER in radix RADIX, 2 <= RADIX <= 36.
+
+  #2R-111 
+    => -7
+  #25rah 
+    => 267
+
 ** The function documentation-property now evaluates the value of
 the given property to obtain a a string if it doesn't refer to etc/DOC
 and isn't a string.
Binary file src/ChangeLog has changed