aboutsummaryrefslogtreecommitdiffstats
path: root/src/syntax.c
diff options
context:
space:
mode:
authorGlenn Morris2009-02-20 06:09:38 +0000
committerGlenn Morris2009-02-20 06:09:38 +0000
commit7087d5e9af41c8835c3a5090bd8e2c6893685466 (patch)
treec18cb77452b98f40415ed750c40c72dd93238943 /src/syntax.c
parent7aad296acfd3f744f3689905b358bbe160a2d0f0 (diff)
downloademacs-7087d5e9af41c8835c3a5090bd8e2c6893685466.tar.gz
emacs-7087d5e9af41c8835c3a5090bd8e2c6893685466.zip
(Fskip_chars_forward): Fix doc typo.
Diffstat (limited to 'src/syntax.c')
-rw-r--r--src/syntax.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/syntax.c b/src/syntax.c
index f50649e41e9..494bd16f8c0 100644
--- a/src/syntax.c
+++ b/src/syntax.c
@@ -1353,7 +1353,7 @@ DEFUN ("skip-chars-forward", Fskip_chars_forward, Sskip_chars_forward, 1, 2, 0,
1353 doc: /* Move point forward, stopping before a char not in STRING, or at pos LIM. 1353 doc: /* Move point forward, stopping before a char not in STRING, or at pos LIM.
1354STRING is like the inside of a `[...]' in a regular expression 1354STRING is like the inside of a `[...]' in a regular expression
1355except that `]' is never special and `\\' quotes `^', `-' or `\\' 1355except that `]' is never special and `\\' quotes `^', `-' or `\\'
1356 (but not as the end of a range; quoting is never needed there). 1356 (but not at the end of a range; quoting is never needed there).
1357Thus, with arg "a-zA-Z", this skips letters stopping before first nonletter. 1357Thus, with arg "a-zA-Z", this skips letters stopping before first nonletter.
1358With arg "^a-zA-Z", skips nonletters stopping before first letter. 1358With arg "^a-zA-Z", skips nonletters stopping before first letter.
1359Char classes, e.g. `[:alpha:]', are supported. 1359Char classes, e.g. `[:alpha:]', are supported.