]> code.delx.au - gnu-emacs/commitdiff
(Skipping Characters): skip-chars-forward now handles char classes.
authorRichard M. Stallman <rms@gnu.org>
Sun, 21 Nov 2004 03:51:04 +0000 (03:51 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 21 Nov 2004 03:51:04 +0000 (03:51 +0000)
lispref/ChangeLog
lispref/positions.texi

index 3d6b3cfd59cff90293783cb318ef8997ff4e1425..5e5cdfc895596ee7680191a0af48adb1e5906b1c 100644 (file)
@@ -1,5 +1,8 @@
 2004-11-20  Richard M. Stallman  <rms@gnu.org>
 
+       * positions.texi (Skipping Characters): skip-chars-forward
+       now handles char classes.
+
        * intro.texi (Printing Notation): Avoid confusion of `print'
        when explaining @print.
 
index 12ec9f7ff4e24c01028c7ceacaebcf084dcee867..783024da052030beb821ac54a2b6dba034dc31be 100644 (file)
@@ -796,16 +796,6 @@ comes back" twice.
 @end group
 @end example
 
-Note that char classes are not currently supported in
-@var{character-set}; they will be treated as literals.  Thus you
-cannot use @code{"[:alpha:]"} instead of @code{"a-zA-Z"} to include
-non-@acronym{ASCII} letters.  A way to skip forward over all letters is:
-
-@example
-(re-search-forward "\\=[[:alpha:]]*" nil t)
-@end example
-@end defun
-
 @defun skip-chars-backward character-set &optional limit
 This function moves point backward, skipping characters that match
 @var{character-set}, until @var{limit}.  It is just like