summaryrefslogtreecommitdiff
path: root/src/search.c
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1993-11-10 19:52:09 +0000
committerRichard M. Stallman <rms@gnu.org>1993-11-10 19:52:09 +0000
commit1e807a330248224851b14e4d3f8ffb82f74b857d (patch)
treec3332a637c4ba3a9a282da47cf125d0bb373f1cc /src/search.c
parent45cda00e2bdd420bf8594b36b7eb76c8358b5a87 (diff)
downloademacs-1e807a330248224851b14e4d3f8ffb82f74b857d.tar.gz
(Fskip_chars_backward, Fskip_chars_forward): Doc fix.
Diffstat (limited to 'src/search.c')
-rw-r--r--src/search.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/search.c b/src/search.c
index a1dc6769d6f..b10a8865058 100644
--- a/src/search.c
+++ b/src/search.c
@@ -352,8 +352,8 @@ find_next_newline (from, cnt)
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 @@ Returns the distance traveled, either zero or positive.")
}
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)