# HG changeset patch # User Richard M. Stallman # Date 752961129 0 # Node ID dc4d4f874b5c27c266ce53eb8c59e36af67a89ec # Parent 7545290052bf6cde481058df9c417b3da46d1de6 (Fskip_chars_backward, Fskip_chars_forward): Doc fix. diff -r 7545290052bf -r dc4d4f874b5c src/search.c --- a/src/search.c Wed Nov 10 19:45:50 1993 +0000 +++ b/src/search.c Wed Nov 10 19:52:09 1993 +0000 @@ -352,8 +352,8 @@ Lisp_Object skip_chars (); DEFUN ("skip-chars-forward", Fskip_chars_forward, Sskip_chars_forward, 1, 2, 0, - "Move point forward, stopping before a char not in CHARS, or at position LIM.\n\ -CHARS is like the inside of a `[...]' in a regular expression\n\ + "Move point forward, stopping before a char not in STRING, or at pos LIM.\n\ +STRING is like the inside of a `[...]' in a regular expression\n\ except that `]' is never special and `\\' quotes `^', `-' or `\\'.\n\ Thus, with arg \"a-zA-Z\", this skips letters stopping before first nonletter.\n\ With arg \"^a-zA-Z\", skips nonletters stopping before first letter.\n\ @@ -365,7 +365,7 @@ } DEFUN ("skip-chars-backward", Fskip_chars_backward, Sskip_chars_backward, 1, 2, 0, - "Move point backward, stopping after a char not in CHARS, or at position LIM.\n\ + "Move point backward, stopping after a char not in STRING, or at pos LIM.\n\ See `skip-chars-forward' for details.\n\ Returns the distance traveled, either zero or negative.") (string, lim)