emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r105215: Mention `case-fold-search' i


From: Lars Magne Ingebrigtsen
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r105215: Mention `case-fold-search' in all the re_search_* functions
Date: Thu, 14 Jul 2011 20:45:36 +0200
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 105215
fixes bug(s): http://debbugs.gnu.org/8138
committer: Lars Magne Ingebrigtsen <address@hidden>
branch nick: trunk
timestamp: Thu 2011-07-14 20:45:36 +0200
message:
  Mention `case-fold-search' in all the re_search_* functions
modified:
  src/ChangeLog
  src/search.c
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2011-07-14 18:34:54 +0000
+++ b/src/ChangeLog     2011-07-14 18:45:36 +0000
@@ -1,5 +1,8 @@
 2011-07-14  Lars Magne Ingebrigtsen  <address@hidden>
 
+       * search.c (Fre_search_backward): Mention `case-fold-search' in
+       all the re_search_* functions (bug#8138).
+
        * keyboard.c (Fopen_dribble_file): Document when the file is
        closed (bug#8056).
 

=== modified file 'src/search.c'
--- a/src/search.c      2011-06-24 21:25:22 +0000
+++ b/src/search.c      2011-07-14 18:45:36 +0000
@@ -2284,6 +2284,10 @@
 Optional third argument, if t, means if fail just return nil (no error).
   If not nil and not t, move to limit of search and return nil.
 Optional fourth argument is repeat count--search for successive occurrences.
+
+Search case-sensitivity is determined by the value of the variable
+`case-fold-search', which see.
+
 See also the functions `match-beginning', `match-end', `match-string',
 and `replace-match'.  */)
   (Lisp_Object regexp, Lisp_Object bound, Lisp_Object noerror, Lisp_Object 
count)
@@ -2300,6 +2304,10 @@
 Optional third argument, if t, means if fail just return nil (no error).
   If not nil and not t, move to limit of search and return nil.
 Optional fourth argument is repeat count--search for successive occurrences.
+
+Search case-sensitivity is determined by the value of the variable
+`case-fold-search', which see.
+
 See also the functions `match-beginning', `match-end', `match-string',
 and `replace-match'.  */)
   (Lisp_Object regexp, Lisp_Object bound, Lisp_Object noerror, Lisp_Object 
count)
@@ -2319,6 +2327,10 @@
 Optional third argument, if t, means if fail just return nil (no error).
   If not nil and not t, move to limit of search and return nil.
 Optional fourth argument is repeat count--search for successive occurrences.
+
+Search case-sensitivity is determined by the value of the variable
+`case-fold-search', which see.
+
 See also the functions `match-beginning', `match-end', `match-string',
 and `replace-match'.  */)
   (Lisp_Object regexp, Lisp_Object bound, Lisp_Object noerror, Lisp_Object 
count)
@@ -2336,6 +2348,10 @@
 Optional third argument, if t, means if fail just return nil (no error).
   If not nil and not t, move to limit of search and return nil.
 Optional fourth argument is repeat count--search for successive occurrences.
+
+Search case-sensitivity is determined by the value of the variable
+`case-fold-search', which see.
+
 See also the functions `match-beginning', `match-end', `match-string',
 and `replace-match'.  */)
   (Lisp_Object regexp, Lisp_Object bound, Lisp_Object noerror, Lisp_Object 
count)


reply via email to

[Prev in Thread] Current Thread [Next in Thread]