]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fstring_match): Doc fix.
authorRichard M. Stallman <rms@gnu.org>
Wed, 19 Oct 2005 01:52:59 +0000 (01:52 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 19 Oct 2005 01:52:59 +0000 (01:52 +0000)
src/ChangeLog
src/search.c

index 61b658b6b88c3cc0a1ee8479134249cc6fc3823b..40d2ed10308f279e7fa327bcb2cadff6e7d81159 100644 (file)
@@ -1,3 +1,7 @@
+2005-10-18  Richard M. Stallman  <rms@gnu.org>
+
+       * search.c (Fstring_match): Doc fix.
+
 2005-10-18  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
 
        * macterm.c (note_mouse_movement): Use PtInRect.
index f60e6d0cfe2ac263a0a5ba026f4255c2cf2ca966..c9ed8e500767a620ae9bc1358fa6ce0461912b28 100644 (file)
@@ -429,7 +429,7 @@ string_match_1 (regexp, string, start, posix)
 
 DEFUN ("string-match", Fstring_match, Sstring_match, 2, 3, 0,
        doc: /* Return index of start of first match for REGEXP in STRING, or nil.
-Case is ignored if `case-fold-search' is non-nil in the current buffer.
+Matching ignores case `case-fold-search' is non-nil.
 If third arg START is non-nil, start search at that index in STRING.
 For index of first char beyond the match, do (match-end 0).
 `match-end' and `match-beginning' also give indices of substrings