diff options
| author | Glenn Morris | 2009-02-20 06:09:38 +0000 |
|---|---|---|
| committer | Glenn Morris | 2009-02-20 06:09:38 +0000 |
| commit | 7087d5e9af41c8835c3a5090bd8e2c6893685466 (patch) | |
| tree | c18cb77452b98f40415ed750c40c72dd93238943 /src | |
| parent | 7aad296acfd3f744f3689905b358bbe160a2d0f0 (diff) | |
| download | emacs-7087d5e9af41c8835c3a5090bd8e2c6893685466.tar.gz emacs-7087d5e9af41c8835c3a5090bd8e2c6893685466.zip | |
(Fskip_chars_forward): Fix doc typo.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/syntax.c | 2 |
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 @@ | |||
| 1 | 2009-02-20 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * syntax.c (Fskip_chars_forward): Fix doc typo. | ||
| 4 | |||
| 1 | 2009-02-20 Chong Yidong <cyd@stupidchicken.com> | 5 | 2009-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. |
| 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. |