emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/src/search.c


From: Kenichi Handa
Subject: [Emacs-diffs] Changes to emacs/src/search.c
Date: Mon, 18 Oct 2004 08:33:56 -0400

Index: emacs/src/search.c
diff -c emacs/src/search.c:1.184 emacs/src/search.c:1.185
*** emacs/src/search.c:1.184    Thu Jul 15 03:01:07 2004
--- emacs/src/search.c  Mon Oct 18 12:26:36 2004
***************
*** 493,498 ****
--- 493,519 ----
    immediate_quit = 0;
    return val;
  }
+ 
+ /* Like fast_string_match but ignore case.  */
+ 
+ int
+ fast_string_match_ignore_case (regexp, string)
+      Lisp_Object regexp, string;
+ {
+   int val;
+   struct re_pattern_buffer *bufp;
+ 
+   bufp = compile_pattern (regexp, 0, Vascii_downcase_table,
+                         0, STRING_MULTIBYTE (string));
+   immediate_quit = 1;
+   re_match_object = string;
+ 
+   val = re_search (bufp, (char *) SDATA (string),
+                  SBYTES (string), 0,
+                  SBYTES (string), 0);
+   immediate_quit = 0;
+   return val;
+ }
  
  /* The newline cache: remembering which sections of text have no newlines.  */
  




reply via email to

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