diff options
| author | Richard M. Stallman | 2007-04-28 18:06:15 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2007-04-28 18:06:15 +0000 |
| commit | fa58f4b5812bb87d57cf862cad664ff36ca9de36 (patch) | |
| tree | 9070372cc54f31d6d976a8efb2c03432756d51b2 | |
| parent | bdfbd7e3fe7e42ab8e34fe6ce504a9278de7476b (diff) | |
| download | emacs-fa58f4b5812bb87d57cf862cad664ff36ca9de36.tar.gz emacs-fa58f4b5812bb87d57cf862cad664ff36ca9de36.zip | |
*** empty log message ***
| -rw-r--r-- | admin/FOR-RELEASE | 2 | ||||
| -rw-r--r-- | etc/NEWS | 17 | ||||
| -rw-r--r-- | lisp/ChangeLog | 4 |
3 files changed, 16 insertions, 7 deletions
diff --git a/admin/FOR-RELEASE b/admin/FOR-RELEASE index 895b5b31931..5de7a8fa23b 100644 --- a/admin/FOR-RELEASE +++ b/admin/FOR-RELEASE | |||
| @@ -59,6 +59,8 @@ OpenBSD compilation works on i386. | |||
| 59 | 59 | ||
| 60 | ** hiroshi.fujishima@gmail.com, Apr 27: emacs-22.0.99 configure problem | 60 | ** hiroshi.fujishima@gmail.com, Apr 27: emacs-22.0.99 configure problem |
| 61 | 61 | ||
| 62 | ** C mode fontification took 50 seconds | ||
| 63 | |||
| 62 | * DOCUMENTATION | 64 | * DOCUMENTATION |
| 63 | 65 | ||
| 64 | ** Check the Emacs Tutorial. | 66 | ** Check the Emacs Tutorial. |
| @@ -3465,7 +3465,7 @@ 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. | 3468 | *** New syntax: \s now stands for the SPACE character. |
| 3469 | 3469 | ||
| 3470 | `?\s' is a new way to write the space character. You must make sure | 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" | 3471 | it is not followed by a dash, since `?\s-...' indicates the "super" |
| @@ -3476,6 +3476,15 @@ them. | |||
| 3476 | `\s' stands for space in strings, too, but it is not really meant for | 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. | 3477 | strings; it is easier and nicer just to write a space. |
| 3478 | 3478 | ||
| 3479 | *** New syntax: \uXXXX and \UXXXXXXXX specify Unicode code points in hex. | ||
| 3480 | |||
| 3481 | For instance, you can use "\u0428" to specify a string consisting of | ||
| 3482 | CYRILLIC CAPITAL LETTER SHA, or `"U0001D6E2" to specify one consisting | ||
| 3483 | of MATHEMATICAL ITALIC CAPITAL ALPHA (the latter is greater than | ||
| 3484 | #xFFFF and thus needs the longer syntax). | ||
| 3485 | |||
| 3486 | This syntax works for both character constants and strings. | ||
| 3487 | |||
| 3479 | *** The function `expt' handles negative exponents differently. | 3488 | *** The function `expt' handles negative exponents differently. |
| 3480 | The value for `(expt A B)', if both A and B are integers and B is | 3489 | The value for `(expt A B)', if both A and B are integers and B is |
| 3481 | negative, is now a float. For example: (expt 2 -2) => 0.25. | 3490 | negative, is now a float. For example: (expt 2 -2) => 0.25. |
| @@ -3705,12 +3714,6 @@ text properties. | |||
| 3705 | `assoc-ignore-representation', which are still available, but have | 3714 | `assoc-ignore-representation', which are still available, but have |
| 3706 | been declared obsolete. | 3715 | been declared obsolete. |
| 3707 | 3716 | ||
| 3708 | *** New syntax: \uXXXX and \UXXXXXXXX specify Unicode code points in hex. | ||
| 3709 | Use "\u0428" to specify a string consisting of CYRILLIC CAPITAL LETTER SHA, | ||
| 3710 | or "\U0001D6E2" to specify one consisting of MATHEMATICAL ITALIC CAPITAL | ||
| 3711 | ALPHA (the latter is greater than #xFFFF and thus needs the longer | ||
| 3712 | syntax). Also available for characters. | ||
| 3713 | |||
| 3714 | ** Displaying warnings to the user. | 3717 | ** Displaying warnings to the user. |
| 3715 | 3718 | ||
| 3716 | See the functions `warn' and `display-warning', or the Lisp Manual. | 3719 | See the functions `warn' and `display-warning', or the Lisp Manual. |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 1f870941eeb..be040f65c9e 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2007-04-28 Richard Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * progmodes/sh-script.el (sh-mode): Recognize .profile as sh style. | ||
| 4 | |||
| 1 | 2007-04-28 Stefan Monnier <monnier@iro.umontreal.ca> | 5 | 2007-04-28 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 6 | ||
| 3 | * vc-hooks.el (vc-ignore-dir-regexp): Add /.../ for the DFS filesystem. | 7 | * vc-hooks.el (vc-ignore-dir-regexp): Add /.../ for the DFS filesystem. |