comparison src/syntax.c @ 102145:16ac9218f780

(Fskip_chars_forward): Fix doc typo.
author Glenn Morris <rgm@gnu.org>
date Fri, 20 Feb 2009 06:08:57 +0000
parents e038c1a8307c
children 7a2f279a2c8d
comparison
equal deleted inserted replaced
102144:1ec88ff720f2 102145:16ac9218f780
1351 1351
1352 DEFUN ("skip-chars-forward", Fskip_chars_forward, Sskip_chars_forward, 1, 2, 0, 1352 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.
1354 STRING is like the inside of a `[...]' in a regular expression 1354 STRING is like the inside of a `[...]' in a regular expression
1355 except that `]' is never special and `\\' quotes `^', `-' or `\\' 1355 except 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).
1357 Thus, with arg "a-zA-Z", this skips letters stopping before first nonletter. 1357 Thus, with arg "a-zA-Z", this skips letters stopping before first nonletter.
1358 With arg "^a-zA-Z", skips nonletters stopping before first letter. 1358 With arg "^a-zA-Z", skips nonletters stopping before first letter.
1359 Char classes, e.g. `[:alpha:]', are supported. 1359 Char classes, e.g. `[:alpha:]', are supported.
1360 1360
1361 Returns the distance traveled, either zero or positive. */) 1361 Returns the distance traveled, either zero or positive. */)