diff options
| author | Richard M. Stallman | 2007-04-28 17:21:40 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2007-04-28 17:21:40 +0000 |
| commit | 46062b5605d7ccf81e001a5fd6f22085eac513fb (patch) | |
| tree | a176c3f161f413b200ec775001bd4cb3216b3c46 | |
| parent | 71a4847e8c90c0e8127888003b57c07ffa8aa78c (diff) | |
| download | emacs-46062b5605d7ccf81e001a5fd6f22085eac513fb.tar.gz emacs-46062b5605d7ccf81e001a5fd6f22085eac513fb.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 22 |
1 files changed, 11 insertions, 11 deletions
| @@ -3465,6 +3465,17 @@ display tables. | |||
| 3465 | 3465 | ||
| 3466 | ** General Lisp changes: | 3466 | ** General Lisp changes: |
| 3467 | 3467 | ||
| 3468 | *** The escape sequence \s now stands for the SPACE character. | ||
| 3469 | |||
| 3470 | `?\s' is a new way to write the space character. You must make sure | ||
| 3471 | it is not followed by a dash, since `?\s-...' indicates the "super" | ||
| 3472 | modifier. However, it would be strange to write a character constant | ||
| 3473 | and a following symbol (beginning with `-') with no space between | ||
| 3474 | them. | ||
| 3475 | |||
| 3476 | `\s' stands for space in strings, too, but it is not really meant for | ||
| 3477 | strings; it is easier and nicer just to write a space. | ||
| 3478 | |||
| 3468 | *** The function `expt' handles negative exponents differently. | 3479 | *** The function `expt' handles negative exponents differently. |
| 3469 | The value for `(expt A B)', if both A and B are integers and B is | 3480 | The value for `(expt A B)', if both A and B are integers and B is |
| 3470 | negative, is now a float. For example: (expt 2 -2) => 0.25. | 3481 | negative, is now a float. For example: (expt 2 -2) => 0.25. |
| @@ -3674,17 +3685,6 @@ variable `customize-package-emacs-version-alist'. | |||
| 3674 | 3685 | ||
| 3675 | ** String changes: | 3686 | ** String changes: |
| 3676 | 3687 | ||
| 3677 | *** The escape sequence \s now stands for the SPACE character. | ||
| 3678 | |||
| 3679 | `?\s' is a new way to write the space character. You must make sure | ||
| 3680 | it is not followed by a dash, since `?\s-...' indicates the "super" | ||
| 3681 | modifier. However, it would be strange to write a character constant | ||
| 3682 | and a following symbol (beginning with `-') with no space between | ||
| 3683 | them. | ||
| 3684 | |||
| 3685 | `\s' stands for space in strings, too, but it is not really meant for | ||
| 3686 | strings; it is easier and nicer just to write a space. | ||
| 3687 | |||
| 3688 | *** A hex escape in a string constant forces the string to be multibyte. | 3688 | *** A hex escape in a string constant forces the string to be multibyte. |
| 3689 | 3689 | ||
| 3690 | *** An octal escape in a string constant forces the string to be unibyte. | 3690 | *** An octal escape in a string constant forces the string to be unibyte. |