diff options
| author | Richard M. Stallman | 2005-03-21 17:54:33 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2005-03-21 17:54:33 +0000 |
| commit | 543bc1b0841ff4bf1ec63e46ddd42e8805808478 (patch) | |
| tree | 8fd9d44a1dd6d6168ff5472bae03dcf95b192a33 /lispref | |
| parent | 3a05b1e42256ad42163563c0977c8fa03d073ecf (diff) | |
| download | emacs-543bc1b0841ff4bf1ec63e46ddd42e8805808478.tar.gz emacs-543bc1b0841ff4bf1ec63e46ddd42e8805808478.zip | |
(Skipping Characters): skip-chars-forward allows character classes.
Diffstat (limited to 'lispref')
| -rw-r--r-- | lispref/positions.texi | 3 |
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 | |||
| 770 | terminate it, and @samp{\} quotes @samp{^}, @samp{-} or @samp{\}. | 770 | terminate it, and @samp{\} quotes @samp{^}, @samp{-} or @samp{\}. |
| 771 | Thus, @code{"a-zA-Z"} skips over all letters, stopping before the | 771 | Thus, @code{"a-zA-Z"} skips over all letters, stopping before the |
| 772 | first nonletter, and @code{"^a-zA-Z"} skips nonletters stopping before | 772 | first nonletter, and @code{"^a-zA-Z"} skips nonletters stopping before |
| 773 | the first letter. @xref{Regular Expressions}. | 773 | the first letter. See @xref{Regular Expressions}. Character classes |
| 774 | can also be used, e.g. @code{"[:alnum:]"}. See @pxref{Char Classes}. | ||
| 774 | 775 | ||
| 775 | If @var{limit} is supplied (it must be a number or a marker), it | 776 | If @var{limit} is supplied (it must be a number or a marker), it |
| 776 | specifies the maximum position in the buffer that point can be skipped | 777 | specifies the maximum position in the buffer that point can be skipped |