changeset 77600:317edcdecb49

*** empty log message ***
author Richard M. Stallman <rms@gnu.org>
date Sat, 28 Apr 2007 18:06:15 +0000
parents d80221a6229e
children 19cb46e07cc9
files admin/FOR-RELEASE etc/NEWS lisp/ChangeLog
diffstat 3 files changed, 16 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/admin/FOR-RELEASE	Sat Apr 28 18:00:51 2007 +0000
+++ b/admin/FOR-RELEASE	Sat Apr 28 18:06:15 2007 +0000
@@ -59,6 +59,8 @@
 
 ** hiroshi.fujishima@gmail.com, Apr 27: emacs-22.0.99 configure problem
 
+** C mode fontification took 50 seconds
+
 * DOCUMENTATION
 
 ** Check the Emacs Tutorial.
--- a/etc/NEWS	Sat Apr 28 18:00:51 2007 +0000
+++ b/etc/NEWS	Sat Apr 28 18:06:15 2007 +0000
@@ -3465,7 +3465,7 @@
 
 ** General Lisp changes:
 
-*** The escape sequence \s now stands for the SPACE character.
+*** New syntax: \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"
@@ -3476,6 +3476,15 @@
 `\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.
 
+*** New syntax: \uXXXX and \UXXXXXXXX specify Unicode code points in hex.
+
+For instance, you can use "\u0428" to specify a string consisting of
+CYRILLIC CAPITAL LETTER SHA, or `"U0001D6E2" to specify one consisting
+of MATHEMATICAL ITALIC CAPITAL ALPHA (the latter is greater than
+#xFFFF and thus needs the longer syntax).
+
+This syntax works for both character constants and strings.
+
 *** 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.
@@ -3705,12 +3714,6 @@
 `assoc-ignore-representation', which are still available, but have
 been declared obsolete.
 
-*** New syntax: \uXXXX and \UXXXXXXXX specify Unicode code points in hex.
-Use "\u0428" to specify a string consisting of CYRILLIC CAPITAL LETTER SHA,
-or "\U0001D6E2" to specify one consisting of MATHEMATICAL ITALIC CAPITAL
-ALPHA (the latter is greater than #xFFFF and thus needs the longer
-syntax).  Also available for characters.
-
 ** Displaying warnings to the user.
 
 See the functions `warn' and `display-warning', or the Lisp Manual.
--- a/lisp/ChangeLog	Sat Apr 28 18:00:51 2007 +0000
+++ b/lisp/ChangeLog	Sat Apr 28 18:06:15 2007 +0000
@@ -1,3 +1,7 @@
+2007-04-28  Richard Stallman  <rms@gnu.org>
+
+	* progmodes/sh-script.el (sh-mode): Recognize .profile as sh style.
+
 2007-04-28  Stefan Monnier  <monnier@iro.umontreal.ca>
 
 	* vc-hooks.el (vc-ignore-dir-regexp): Add /.../ for the DFS filesystem.