aboutsummaryrefslogtreecommitdiffstats
path: root/src
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
parent7aad296acfd3f744f3689905b358bbe160a2d0f0 (diff)
downloademacs-7087d5e9af41c8835c3a5090bd8e2c6893685466.tar.gz
emacs-7087d5e9af41c8835c3a5090bd8e2c6893685466.zip
(Fskip_chars_forward): Fix doc typo.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/syntax.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 2be4129164b..d7ab53246ec 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12009-02-20 Glenn Morris <rgm@gnu.org>
2
3 * syntax.c (Fskip_chars_forward): Fix doc typo.
4
12009-02-20 Chong Yidong <cyd@stupidchicken.com> 52009-02-20 Chong Yidong <cyd@stupidchicken.com>
2 6
3 * keymap.c (Fkeymap_parent): Doc fix (Bug#2391). 7 * 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,
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.