aboutsummaryrefslogtreecommitdiffstats
path: root/lispref
diff options
context:
space:
mode:
authorRichard M. Stallman2005-03-21 17:54:33 +0000
committerRichard M. Stallman2005-03-21 17:54:33 +0000
commit543bc1b0841ff4bf1ec63e46ddd42e8805808478 (patch)
tree8fd9d44a1dd6d6168ff5472bae03dcf95b192a33 /lispref
parent3a05b1e42256ad42163563c0977c8fa03d073ecf (diff)
downloademacs-543bc1b0841ff4bf1ec63e46ddd42e8805808478.tar.gz
emacs-543bc1b0841ff4bf1ec63e46ddd42e8805808478.zip
(Skipping Characters): skip-chars-forward allows character classes.
Diffstat (limited to 'lispref')
-rw-r--r--lispref/positions.texi3
1 files changed, 2 insertions, 1 deletions
diff --git a/lispref/positions.texi b/lispref/positions.texi
index 282f897ebab..19a26754140 100644
--- a/lispref/positions.texi
+++ b/lispref/positions.texi
@@ -770,7 +770,8 @@ The argument @var{character-set} is a string, like the inside of a
770terminate it, and @samp{\} quotes @samp{^}, @samp{-} or @samp{\}. 770terminate it, and @samp{\} quotes @samp{^}, @samp{-} or @samp{\}.
771Thus, @code{"a-zA-Z"} skips over all letters, stopping before the 771Thus, @code{"a-zA-Z"} skips over all letters, stopping before the
772first nonletter, and @code{"^a-zA-Z"} skips nonletters stopping before 772first nonletter, and @code{"^a-zA-Z"} skips nonletters stopping before
773the first letter. @xref{Regular Expressions}. 773the first letter. See @xref{Regular Expressions}. Character classes
774can also be used, e.g. @code{"[:alnum:]"}. See @pxref{Char Classes}.
774 775
775If @var{limit} is supplied (it must be a number or a marker), it 776If @var{limit} is supplied (it must be a number or a marker), it
776specifies the maximum position in the buffer that point can be skipped 777specifies the maximum position in the buffer that point can be skipped