aboutsummaryrefslogtreecommitdiffstats
path: root/etc/NEWS
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>2007-04-28 17:21:40 +0000
committerRichard M. Stallman <[email protected]>2007-04-28 17:21:40 +0000
commit46062b5605d7ccf81e001a5fd6f22085eac513fb (patch)
treea176c3f161f413b200ec775001bd4cb3216b3c46 /etc/NEWS
parent71a4847e8c90c0e8127888003b57c07ffa8aa78c (diff)
*** empty log message ***
Diffstat (limited to 'etc/NEWS')
-rw-r--r--etc/NEWS22
1 files changed, 11 insertions, 11 deletions
diff --git a/etc/NEWS b/etc/NEWS
index fd000143cf..cf351830a2 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -3465,6 +3465,17 @@ display tables.
** General Lisp changes:
+*** The escape sequence \s now stands for the SPACE character.
+
+`?\s' is a new way to write the space character. You must make sure
+it is not followed by a dash, since `?\s-...' indicates the "super"
+modifier. However, it would be strange to write a character constant
+and a following symbol (beginning with `-') with no space between
+them.
+
+`\s' stands for space in strings, too, but it is not really meant for
+strings; it is easier and nicer just to write a space.
+
*** The function `expt' handles negative exponents differently.
The value for `(expt A B)', if both A and B are integers and B is
negative, is now a float. For example: (expt 2 -2) => 0.25.
@@ -3674,17 +3685,6 @@ variable `customize-package-emacs-version-alist'.
** String changes:
-*** The escape sequence \s now stands for the SPACE character.
-
-`?\s' is a new way to write the space character. You must make sure
-it is not followed by a dash, since `?\s-...' indicates the "super"
-modifier. However, it would be strange to write a character constant
-and a following symbol (beginning with `-') with no space between
-them.
-
-`\s' stands for space in strings, too, but it is not really meant for
-strings; it is easier and nicer just to write a space.
-
*** A hex escape in a string constant forces the string to be multibyte.
*** An octal escape in a string constant forces the string to be unibyte.