comparison etc/NEWS @ 28166:f3ea89b2cc47

*** empty log message ***
author Gerd Moellmann <gerd@gnu.org>
date Thu, 16 Mar 2000 13:24:56 +0000
parents 20862b49300f
children 59c09e95d278
comparison
equal deleted inserted replaced
28165:9a61aec440a7 28166:f3ea89b2cc47
5 Please send Emacs bug reports to bug-gnu-emacs@gnu.org. 5 Please send Emacs bug reports to bug-gnu-emacs@gnu.org.
6 For older news, see the file ONEWS. 6 For older news, see the file ONEWS.
7 7
8 8
9 * Installation Changes in Emacs 21.1 9 * Installation Changes in Emacs 21.1
10
11 ** `movemail' defaults to supporting POP. You can turn this off using
12 the --without-pop configure option, should that be necessary.
13
14 ** There are new configure options associated with the support for
15 images and toolkit scrollbars. Use the --help option to list them.
16
17 * Changes in Emacs 21.1
10 18
11 ** Emacs now refuses to load compiled Lisp files which weren't 19 ** Emacs now refuses to load compiled Lisp files which weren't
12 compiled with Emacs. Set `load-dangerous-libraries' to t to change 20 compiled with Emacs. Set `load-dangerous-libraries' to t to change
13 this behavior. 21 this behavior.
14 22
58 resource values are `true' or `on'. 66 resource values are `true' or `on'.
59 67
60 Example: 68 Example:
61 69
62 emacs.privateColormap: true 70 emacs.privateColormap: true
63
64 ** `movemail' defaults to supporting POP. You can turn this off using
65 the --without-pop configure option, should that be necessary.
66
67 ** There are new configure options associated with the support for
68 images and toolkit scrollbars. Use the --help option to list them.
69
70 * Changes in Emacs 21.1
71 71
72 ** The menu bar configuration has changed. The new configuration is 72 ** The menu bar configuration has changed. The new configuration is
73 more CUA-compliant. The most significant change is that Options is 73 more CUA-compliant. The most significant change is that Options is
74 now a separate menu-bar item, with Mule and Customize as its submenus. 74 now a separate menu-bar item, with Mule and Customize as its submenus.
75 75
1050 1050
1051 Note that +++ before an item means the Lisp manual has been updated. 1051 Note that +++ before an item means the Lisp manual has been updated.
1052 --- means that I have decided it does not need to be in the Lisp manual. 1052 --- means that I have decided it does not need to be in the Lisp manual.
1053 When you add a new item, please add it without either +++ or --- 1053 When you add a new item, please add it without either +++ or ---
1054 so I will know I still need to look at it -- rms. 1054 so I will know I still need to look at it -- rms.
1055
1056 ** Emacs' reader supports CL read syntax for integers in bases
1057 other than 10.
1058
1059 *** `#BINTEGER' or `#bINTEGER' reads INTEGER in binary (radix 2).
1060 INTEGER optionally contains a sign.
1061
1062 #b1111
1063 => 15
1064 #b-1111
1065 => -15
1066
1067 *** `#OINTEGER' or `#oINTEGER' reads INTEGER in octal (radix 8).
1068
1069 #o666
1070 => 438
1071
1072 *** `#XINTEGER' or `#xINTEGER' reads INTEGER in hexadecimal (radix 16).
1073
1074 #xbeef
1075 => 48815
1076
1077 *** `#RADIXrINTEGER' reads INTEGER in radix RADIX, 2 <= RADIX <= 36.
1078
1079 #2R-111
1080 => -7
1081 #25rah
1082 => 267
1055 1083
1056 ** The function documentation-property now evaluates the value of 1084 ** The function documentation-property now evaluates the value of
1057 the given property to obtain a a string if it doesn't refer to etc/DOC 1085 the given property to obtain a a string if it doesn't refer to etc/DOC
1058 and isn't a string. 1086 and isn't a string.
1059 1087