aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1993-11-10 19:52:09 +0000
committerRichard M. Stallman1993-11-10 19:52:09 +0000
commit3acb9a699bb7f82f9ef553e5e8eec2b9cd658771 (patch)
tree5733bc2b6debc00b1220b8fcd62d7e91845f7a93 /src
parent7fc8191e8567ec0a5709525b291d3901128c4f19 (diff)
downloademacs-3acb9a699bb7f82f9ef553e5e8eec2b9cd658771.tar.gz
emacs-3acb9a699bb7f82f9ef553e5e8eec2b9cd658771.zip
(Fskip_chars_backward, Fskip_chars_forward): Doc fix.
Diffstat (limited to 'src')
-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)
352Lisp_Object skip_chars (); 352Lisp_Object skip_chars ();
353 353
354DEFUN ("skip-chars-forward", Fskip_chars_forward, Sskip_chars_forward, 1, 2, 0, 354DEFUN ("skip-chars-forward", Fskip_chars_forward, Sskip_chars_forward, 1, 2, 0,
355 "Move point forward, stopping before a char not in CHARS, or at position LIM.\n\ 355 "Move point forward, stopping before a char not in STRING, or at pos LIM.\n\
356CHARS is like the inside of a `[...]' in a regular expression\n\ 356STRING is like the inside of a `[...]' in a regular expression\n\
357except that `]' is never special and `\\' quotes `^', `-' or `\\'.\n\ 357except that `]' is never special and `\\' quotes `^', `-' or `\\'.\n\
358Thus, with arg \"a-zA-Z\", this skips letters stopping before first nonletter.\n\ 358Thus, with arg \"a-zA-Z\", this skips letters stopping before first nonletter.\n\
359With arg \"^a-zA-Z\", skips nonletters stopping before first letter.\n\ 359With arg \"^a-zA-Z\", skips nonletters stopping before first letter.\n\
@@ -365,7 +365,7 @@ Returns the distance traveled, either zero or positive.")
365} 365}
366 366
367DEFUN ("skip-chars-backward", Fskip_chars_backward, Sskip_chars_backward, 1, 2, 0, 367DEFUN ("skip-chars-backward", Fskip_chars_backward, Sskip_chars_backward, 1, 2, 0,
368 "Move point backward, stopping after a char not in CHARS, or at position LIM.\n\ 368 "Move point backward, stopping after a char not in STRING, or at pos LIM.\n\
369See `skip-chars-forward' for details.\n\ 369See `skip-chars-forward' for details.\n\
370Returns the distance traveled, either zero or negative.") 370Returns the distance traveled, either zero or negative.")
371 (string, lim) 371 (string, lim)