]> code.delx.au - gnu-emacs/commitdiff
(Fskip_chars_forward): Fix doc typo.
authorGlenn Morris <rgm@gnu.org>
Fri, 20 Feb 2009 06:09:38 +0000 (06:09 +0000)
committerGlenn Morris <rgm@gnu.org>
Fri, 20 Feb 2009 06:09:38 +0000 (06:09 +0000)
src/ChangeLog
src/syntax.c

index 2be4129164b8449de2e50158b76d0295da9a9e9e..d7ab53246ec8d4b68e4ab36d37630c77ca9e0e4d 100644 (file)
@@ -1,3 +1,7 @@
+2009-02-20  Glenn Morris  <rgm@gnu.org>
+
+       * syntax.c (Fskip_chars_forward): Fix doc typo.
+
 2009-02-20  Chong Yidong  <cyd@stupidchicken.com>
 
        * keymap.c (Fkeymap_parent): Doc fix (Bug#2391).
index f50649e41e909ab930ef9a2bdb6aca353f306901..494bd16f8c0f575b686f6e5f4abbece6f24f1f9e 100644 (file)
@@ -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.