From: Glenn Morris Date: Fri, 20 Feb 2009 06:09:38 +0000 (+0000) Subject: (Fskip_chars_forward): Fix doc typo. X-Git-Tag: emacs-pretest-23.0.91~116 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7087d5e9af41c8835c3a5090bd8e2c6893685466;p=emacs.git (Fskip_chars_forward): Fix doc typo. --- diff --git a/src/ChangeLog b/src/ChangeLog index 2be4129164b..d7ab53246ec 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2009-02-20 Glenn Morris + + * syntax.c (Fskip_chars_forward): Fix doc typo. + 2009-02-20 Chong Yidong * keymap.c (Fkeymap_parent): Doc fix (Bug#2391). 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, doc: /* Move point forward, stopping before a char not in STRING, or at pos LIM. STRING is like the inside of a `[...]' in a regular expression except that `]' is never special and `\\' quotes `^', `-' or `\\' - (but not as the end of a range; quoting is never needed there). + (but not at the end of a range; quoting is never needed there). Thus, with arg "a-zA-Z", this skips letters stopping before first nonletter. With arg "^a-zA-Z", skips nonletters stopping before first letter. Char classes, e.g. `[:alpha:]', are supported.