Mercurial > emacs
annotate src/search.c @ 110709:f07cd17d0a5a
* keyboard.c (command_loop_1): Make sure the mark is really alive
before using it (Bug#7044).
author | Chong Yidong <cyd@stupidchicken.com> |
---|---|
date | Sat, 02 Oct 2010 20:59:02 -0400 |
parents | 875202ac5b45 |
children | 417b1e4d63cd |
rev | line source |
---|---|
603 | 1 /* String search routines for GNU Emacs. |
75227
e90d04cd455a
Update copyright for years from Emacs 21 to present (mainly adding
Glenn Morris <rgm@gnu.org>
parents:
74917
diff
changeset
|
2 Copyright (C) 1985, 1986, 1987, 1993, 1994, 1997, 1998, 1999, 2001, 2002, |
106815 | 3 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 |
79759 | 4 Free Software Foundation, Inc. |
603 | 5 |
6 This file is part of GNU Emacs. | |
7 | |
94963
8971ddf55736
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93758
diff
changeset
|
8 GNU Emacs is free software: you can redistribute it and/or modify |
603 | 9 it under the terms of the GNU General Public License as published by |
94963
8971ddf55736
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93758
diff
changeset
|
10 the Free Software Foundation, either version 3 of the License, or |
8971ddf55736
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93758
diff
changeset
|
11 (at your option) any later version. |
603 | 12 |
13 GNU Emacs is distributed in the hope that it will be useful, | |
14 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 GNU General Public License for more details. | |
17 | |
18 You should have received a copy of the GNU General Public License | |
94963
8971ddf55736
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93758
diff
changeset
|
19 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ |
603 | 20 |
21 | |
4696
1fc792473491
Include <config.h> instead of "config.h".
Roland McGrath <roland@gnu.org>
parents:
4635
diff
changeset
|
22 #include <config.h> |
105669
68dd71358159
* alloc.c: Do not define struct catchtag.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105661
diff
changeset
|
23 #include <setjmp.h> |
603 | 24 #include "lisp.h" |
25 #include "syntax.h" | |
17053
df904355f033
Include category.h and charset.h.
Karl Heuer <kwzh@gnu.org>
parents:
16880
diff
changeset
|
26 #include "category.h" |
603 | 27 #include "buffer.h" |
88388
e9a23b7c1feb
Include "character.h" instead of "charset.h".
Kenichi Handa <handa@m17n.org>
parents:
41389
diff
changeset
|
28 #include "character.h" |
17053
df904355f033
Include category.h and charset.h.
Karl Heuer <kwzh@gnu.org>
parents:
16880
diff
changeset
|
29 #include "charset.h" |
9410
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
30 #include "region-cache.h" |
603 | 31 #include "commands.h" |
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2393
diff
changeset
|
32 #include "blockinput.h" |
20347
d8e5f3c1618b
Include "intervals.h" for prototypes.
Andreas Schwab <schwab@suse.de>
parents:
19541
diff
changeset
|
33 #include "intervals.h" |
621 | 34 |
603 | 35 #include <sys/types.h> |
36 #include "regex.h" | |
37 | |
16275
a4bcfdc9bb66
(REGEXP_CACHE_SIZE): Increase to 20.
Richard M. Stallman <rms@gnu.org>
parents:
16152
diff
changeset
|
38 #define REGEXP_CACHE_SIZE 20 |
603 | 39 |
9605
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
40 /* If the regexp is non-nil, then the buffer contains the compiled form |
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
41 of that regexp, suitable for searching. */ |
16275
a4bcfdc9bb66
(REGEXP_CACHE_SIZE): Increase to 20.
Richard M. Stallman <rms@gnu.org>
parents:
16152
diff
changeset
|
42 struct regexp_cache |
a4bcfdc9bb66
(REGEXP_CACHE_SIZE): Increase to 20.
Richard M. Stallman <rms@gnu.org>
parents:
16152
diff
changeset
|
43 { |
9605
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
44 struct regexp_cache *next; |
58330
5be8a633ec57
(struct regexp_cache): New element whitespace_regexp.
Richard M. Stallman <rms@gnu.org>
parents:
58326
diff
changeset
|
45 Lisp_Object regexp, whitespace_regexp; |
73002
b3a72607819d
* search.c (struct regexp_cache): New entry syntax_table.
Chong Yidong <cyd@stupidchicken.com>
parents:
72945
diff
changeset
|
46 /* Syntax table for which the regexp applies. We need this because |
73230
20801e603746
(compile_pattern): Only check `cp->syntax_table' if needed.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
73096
diff
changeset
|
47 of character classes. If this is t, then the compiled pattern is valid |
20801e603746
(compile_pattern): Only check `cp->syntax_table' if needed.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
73096
diff
changeset
|
48 for any syntax-table. */ |
73002
b3a72607819d
* search.c (struct regexp_cache): New entry syntax_table.
Chong Yidong <cyd@stupidchicken.com>
parents:
72945
diff
changeset
|
49 Lisp_Object syntax_table; |
9605
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
50 struct re_pattern_buffer buf; |
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
51 char fastmap[0400]; |
10020
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
52 /* Nonzero means regexp was compiled to do full POSIX backtracking. */ |
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
53 char posix; |
9605
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
54 }; |
603 | 55 |
9605
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
56 /* The instances of that struct. */ |
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
57 struct regexp_cache searchbufs[REGEXP_CACHE_SIZE]; |
603 | 58 |
9605
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
59 /* The head of the linked list; points to the most recently used buffer. */ |
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
60 struct regexp_cache *searchbuf_head; |
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
61 |
603 | 62 |
621 | 63 /* Every call to re_match, etc., must pass &search_regs as the regs |
64 argument unless you can show it is unnecessary (i.e., if re_match | |
65 is certainly going to be called again before region-around-match | |
66 can be called). | |
67 | |
68 Since the registers are now dynamically allocated, we need to make | |
69 sure not to refer to the Nth register before checking that it has | |
708 | 70 been allocated by checking search_regs.num_regs. |
603 | 71 |
708 | 72 The regex code keeps track of whether it has allocated the search |
9605
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
73 buffer using bits in the re_pattern_buffer. This means that whenever |
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
74 you compile a new pattern, it completely forgets whether it has |
708 | 75 allocated any registers, and will allocate new registers the next |
76 time you call a searching or matching function. Therefore, we need | |
77 to call re_set_registers after compiling a new pattern or after | |
78 setting the match registers, so that the regex functions will be | |
79 able to free or re-allocate it properly. */ | |
603 | 80 static struct re_registers search_regs; |
81 | |
727 | 82 /* The buffer in which the last search was performed, or |
83 Qt if the last search was done in a string; | |
84 Qnil if no searching has been done yet. */ | |
85 static Lisp_Object last_thing_searched; | |
603 | 86 |
14036 | 87 /* error condition signaled when regexp compile_pattern fails */ |
603 | 88 |
89 Lisp_Object Qinvalid_regexp; | |
90 | |
71987
6dd00de34fff
(compile_pattern_1): Use xsignal1.
Kim F. Storm <storm@cua.dk>
parents:
71841
diff
changeset
|
91 /* Error condition used for failing searches */ |
6dd00de34fff
(compile_pattern_1): Use xsignal1.
Kim F. Storm <storm@cua.dk>
parents:
71841
diff
changeset
|
92 Lisp_Object Qsearch_failed; |
6dd00de34fff
(compile_pattern_1): Use xsignal1.
Kim F. Storm <storm@cua.dk>
parents:
71841
diff
changeset
|
93 |
58348
623ffd21f0ff
(Vsearch_spaces_regexp):
Richard M. Stallman <rms@gnu.org>
parents:
58330
diff
changeset
|
94 Lisp_Object Vsearch_spaces_regexp; |
58326
0cc0d3274d68
(Vsearch_whitespace_regexp): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
57735
diff
changeset
|
95 |
81780
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
96 /* If non-nil, the match data will not be changed during call to |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
97 searching or matching functions. This variable is for internal use |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
98 only. */ |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
99 Lisp_Object Vinhibit_changing_match_data; |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
100 |
109100
2bc9a0c04c87
Remove __P and P_ from .c and .m files and definition of P_
Jan D <jan.h.d@swipnet.se>
parents:
108933
diff
changeset
|
101 static void set_search_regs (EMACS_INT, EMACS_INT); |
2bc9a0c04c87
Remove __P and P_ from .c and .m files and definition of P_
Jan D <jan.h.d@swipnet.se>
parents:
108933
diff
changeset
|
102 static void save_search_regs (void); |
110507
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
103 static EMACS_INT simple_search (EMACS_INT, unsigned char *, EMACS_INT, |
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
104 EMACS_INT, Lisp_Object, EMACS_INT, EMACS_INT, |
109100
2bc9a0c04c87
Remove __P and P_ from .c and .m files and definition of P_
Jan D <jan.h.d@swipnet.se>
parents:
108933
diff
changeset
|
105 EMACS_INT, EMACS_INT); |
110507
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
106 static EMACS_INT boyer_moore (EMACS_INT, unsigned char *, EMACS_INT, EMACS_INT, |
109100
2bc9a0c04c87
Remove __P and P_ from .c and .m files and definition of P_
Jan D <jan.h.d@swipnet.se>
parents:
108933
diff
changeset
|
107 Lisp_Object, Lisp_Object, |
2bc9a0c04c87
Remove __P and P_ from .c and .m files and definition of P_
Jan D <jan.h.d@swipnet.se>
parents:
108933
diff
changeset
|
108 EMACS_INT, EMACS_INT, |
2bc9a0c04c87
Remove __P and P_ from .c and .m files and definition of P_
Jan D <jan.h.d@swipnet.se>
parents:
108933
diff
changeset
|
109 EMACS_INT, EMACS_INT, int); |
2bc9a0c04c87
Remove __P and P_ from .c and .m files and definition of P_
Jan D <jan.h.d@swipnet.se>
parents:
108933
diff
changeset
|
110 static EMACS_INT search_buffer (Lisp_Object, EMACS_INT, EMACS_INT, |
110507
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
111 EMACS_INT, EMACS_INT, EMACS_INT, int, |
109100
2bc9a0c04c87
Remove __P and P_ from .c and .m files and definition of P_
Jan D <jan.h.d@swipnet.se>
parents:
108933
diff
changeset
|
112 Lisp_Object, Lisp_Object, int); |
109126
aec1143e8d85
Convert (most) functions in src to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109100
diff
changeset
|
113 static void matcher_overflow (void) NO_RETURN; |
10020
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
114 |
603 | 115 static void |
109126
aec1143e8d85
Convert (most) functions in src to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109100
diff
changeset
|
116 matcher_overflow (void) |
603 | 117 { |
118 error ("Stack overflow in regexp matcher"); | |
119 } | |
120 | |
10020
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
121 /* Compile a regexp and signal a Lisp error if anything goes wrong. |
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
122 PATTERN is the pattern to compile. |
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
123 CP is the place to put the result. |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
124 TRANSLATE is a translation table for ignoring case, or nil for none. |
10020
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
125 REGP is the structure that says where to store the "register" |
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
126 values that will result from matching this pattern. |
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
127 If it is 0, we should compile the pattern not to record any |
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
128 subexpression bounds. |
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
129 POSIX is nonzero if we want full backtracking (POSIX style) |
17053
df904355f033
Include category.h and charset.h.
Karl Heuer <kwzh@gnu.org>
parents:
16880
diff
changeset
|
130 for this pattern. 0 means backtrack only enough to get a valid match. |
58330
5be8a633ec57
(struct regexp_cache): New element whitespace_regexp.
Richard M. Stallman <rms@gnu.org>
parents:
58326
diff
changeset
|
131 |
58348
623ffd21f0ff
(Vsearch_spaces_regexp):
Richard M. Stallman <rms@gnu.org>
parents:
58330
diff
changeset
|
132 The behavior also depends on Vsearch_spaces_regexp. */ |
603 | 133 |
9605
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
134 static void |
109126
aec1143e8d85
Convert (most) functions in src to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109100
diff
changeset
|
135 compile_pattern_1 (struct regexp_cache *cp, Lisp_Object pattern, Lisp_Object translate, struct re_registers *regp, int posix) |
603 | 136 { |
18762
12c0de0113af
(compile_pattern_1): Don't declare val with CONST.
Richard M. Stallman <rms@gnu.org>
parents:
18193
diff
changeset
|
137 char *val; |
10020
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
138 reg_syntax_t old; |
603 | 139 |
9605
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
140 cp->regexp = Qnil; |
21531
5811a3129878
(compile_pattern, compile_pattern_1): Fix mixing of
Andreas Schwab <schwab@suse.de>
parents:
21514
diff
changeset
|
141 cp->buf.translate = (! NILP (translate) ? translate : make_number (0)); |
10020
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
142 cp->posix = posix; |
89062
be059fb97bac
(compile_pattern_1): Don't adjust the multibyteness of
Kenichi Handa <handa@m17n.org>
parents:
89028
diff
changeset
|
143 cp->buf.multibyte = STRING_MULTIBYTE (pattern); |
90760 | 144 cp->buf.charset_unibyte = charset_unibyte; |
93758
abcbb8375c30
(compile_pattern_1): Treat non-nil and non-string of
Chong Yidong <cyd@stupidchicken.com>
parents:
91762
diff
changeset
|
145 if (STRINGP (Vsearch_spaces_regexp)) |
abcbb8375c30
(compile_pattern_1): Treat non-nil and non-string of
Chong Yidong <cyd@stupidchicken.com>
parents:
91762
diff
changeset
|
146 cp->whitespace_regexp = Vsearch_spaces_regexp; |
abcbb8375c30
(compile_pattern_1): Treat non-nil and non-string of
Chong Yidong <cyd@stupidchicken.com>
parents:
91762
diff
changeset
|
147 else |
abcbb8375c30
(compile_pattern_1): Treat non-nil and non-string of
Chong Yidong <cyd@stupidchicken.com>
parents:
91762
diff
changeset
|
148 cp->whitespace_regexp = Qnil; |
abcbb8375c30
(compile_pattern_1): Treat non-nil and non-string of
Chong Yidong <cyd@stupidchicken.com>
parents:
91762
diff
changeset
|
149 |
73096
2f768f0aab61
(compile_pattern_1): Don't BLOCK_INPUT.
Richard M. Stallman <rms@gnu.org>
parents:
73002
diff
changeset
|
150 /* rms: I think BLOCK_INPUT is not needed here any more, |
2f768f0aab61
(compile_pattern_1): Don't BLOCK_INPUT.
Richard M. Stallman <rms@gnu.org>
parents:
73002
diff
changeset
|
151 because regex.c defines malloc to call xmalloc. |
2f768f0aab61
(compile_pattern_1): Don't BLOCK_INPUT.
Richard M. Stallman <rms@gnu.org>
parents:
73002
diff
changeset
|
152 Using BLOCK_INPUT here means the debugger won't run if an error occurs. |
2f768f0aab61
(compile_pattern_1): Don't BLOCK_INPUT.
Richard M. Stallman <rms@gnu.org>
parents:
73002
diff
changeset
|
153 So let's turn it off. */ |
2f768f0aab61
(compile_pattern_1): Don't BLOCK_INPUT.
Richard M. Stallman <rms@gnu.org>
parents:
73002
diff
changeset
|
154 /* BLOCK_INPUT; */ |
27692
bb0e45f6ca86
* regex.h (RE_SYNTAX_EMACS): Add RE_CHAR_CLASSES and RE_INTERVALS
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27592
diff
changeset
|
155 old = re_set_syntax (RE_SYNTAX_EMACS |
10020
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
156 | (posix ? 0 : RE_NO_POSIX_BACKTRACKING)); |
93758
abcbb8375c30
(compile_pattern_1): Treat non-nil and non-string of
Chong Yidong <cyd@stupidchicken.com>
parents:
91762
diff
changeset
|
157 |
abcbb8375c30
(compile_pattern_1): Treat non-nil and non-string of
Chong Yidong <cyd@stupidchicken.com>
parents:
91762
diff
changeset
|
158 if (STRINGP (Vsearch_spaces_regexp)) |
abcbb8375c30
(compile_pattern_1): Treat non-nil and non-string of
Chong Yidong <cyd@stupidchicken.com>
parents:
91762
diff
changeset
|
159 re_set_whitespace_regexp (SDATA (Vsearch_spaces_regexp)); |
abcbb8375c30
(compile_pattern_1): Treat non-nil and non-string of
Chong Yidong <cyd@stupidchicken.com>
parents:
91762
diff
changeset
|
160 else |
abcbb8375c30
(compile_pattern_1): Treat non-nil and non-string of
Chong Yidong <cyd@stupidchicken.com>
parents:
91762
diff
changeset
|
161 re_set_whitespace_regexp (NULL); |
58326
0cc0d3274d68
(Vsearch_whitespace_regexp): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
57735
diff
changeset
|
162 |
89483 | 163 val = (char *) re_compile_pattern ((char *) SDATA (pattern), |
164 SBYTES (pattern), &cp->buf); | |
58326
0cc0d3274d68
(Vsearch_whitespace_regexp): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
57735
diff
changeset
|
165 |
73230
20801e603746
(compile_pattern): Only check `cp->syntax_table' if needed.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
73096
diff
changeset
|
166 /* If the compiled pattern hard codes some of the contents of the |
20801e603746
(compile_pattern): Only check `cp->syntax_table' if needed.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
73096
diff
changeset
|
167 syntax-table, it can only be reused with *this* syntax table. */ |
20801e603746
(compile_pattern): Only check `cp->syntax_table' if needed.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
73096
diff
changeset
|
168 cp->syntax_table = cp->buf.used_syntax ? current_buffer->syntax_table : Qt; |
20801e603746
(compile_pattern): Only check `cp->syntax_table' if needed.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
73096
diff
changeset
|
169 |
58326
0cc0d3274d68
(Vsearch_whitespace_regexp): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
57735
diff
changeset
|
170 re_set_whitespace_regexp (NULL); |
0cc0d3274d68
(Vsearch_whitespace_regexp): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
57735
diff
changeset
|
171 |
10020
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
172 re_set_syntax (old); |
73096
2f768f0aab61
(compile_pattern_1): Don't BLOCK_INPUT.
Richard M. Stallman <rms@gnu.org>
parents:
73002
diff
changeset
|
173 /* UNBLOCK_INPUT; */ |
603 | 174 if (val) |
71987
6dd00de34fff
(compile_pattern_1): Use xsignal1.
Kim F. Storm <storm@cua.dk>
parents:
71841
diff
changeset
|
175 xsignal1 (Qinvalid_regexp, build_string (val)); |
708 | 176 |
9605
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
177 cp->regexp = Fcopy_sequence (pattern); |
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
178 } |
708 | 179 |
22221
239a4b800303
(shrink_regexp_cache): New function.
Richard M. Stallman <rms@gnu.org>
parents:
22082
diff
changeset
|
180 /* Shrink each compiled regexp buffer in the cache |
239a4b800303
(shrink_regexp_cache): New function.
Richard M. Stallman <rms@gnu.org>
parents:
22082
diff
changeset
|
181 to the size actually used right now. |
239a4b800303
(shrink_regexp_cache): New function.
Richard M. Stallman <rms@gnu.org>
parents:
22082
diff
changeset
|
182 This is called from garbage collection. */ |
239a4b800303
(shrink_regexp_cache): New function.
Richard M. Stallman <rms@gnu.org>
parents:
22082
diff
changeset
|
183 |
239a4b800303
(shrink_regexp_cache): New function.
Richard M. Stallman <rms@gnu.org>
parents:
22082
diff
changeset
|
184 void |
109126
aec1143e8d85
Convert (most) functions in src to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109100
diff
changeset
|
185 shrink_regexp_cache (void) |
22221
239a4b800303
(shrink_regexp_cache): New function.
Richard M. Stallman <rms@gnu.org>
parents:
22082
diff
changeset
|
186 { |
34966
23a62cf7d0eb
(shrink_regexp_cache): Remove unused variable `cpp'.
Eli Zaretskii <eliz@gnu.org>
parents:
33052
diff
changeset
|
187 struct regexp_cache *cp; |
22221
239a4b800303
(shrink_regexp_cache): New function.
Richard M. Stallman <rms@gnu.org>
parents:
22082
diff
changeset
|
188 |
239a4b800303
(shrink_regexp_cache): New function.
Richard M. Stallman <rms@gnu.org>
parents:
22082
diff
changeset
|
189 for (cp = searchbuf_head; cp != 0; cp = cp->next) |
239a4b800303
(shrink_regexp_cache): New function.
Richard M. Stallman <rms@gnu.org>
parents:
22082
diff
changeset
|
190 { |
239a4b800303
(shrink_regexp_cache): New function.
Richard M. Stallman <rms@gnu.org>
parents:
22082
diff
changeset
|
191 cp->buf.allocated = cp->buf.used; |
239a4b800303
(shrink_regexp_cache): New function.
Richard M. Stallman <rms@gnu.org>
parents:
22082
diff
changeset
|
192 cp->buf.buffer |
51544
a0c2b39160e9
(shrink_regexp_cache): Use xrealloc.
Dave Love <fx@gnu.org>
parents:
49761
diff
changeset
|
193 = (unsigned char *) xrealloc (cp->buf.buffer, cp->buf.used); |
22221
239a4b800303
(shrink_regexp_cache): New function.
Richard M. Stallman <rms@gnu.org>
parents:
22082
diff
changeset
|
194 } |
239a4b800303
(shrink_regexp_cache): New function.
Richard M. Stallman <rms@gnu.org>
parents:
22082
diff
changeset
|
195 } |
239a4b800303
(shrink_regexp_cache): New function.
Richard M. Stallman <rms@gnu.org>
parents:
22082
diff
changeset
|
196 |
73232
5f8a28d018b2
(compile_pattern): Only check `cp->syntax_table' if needed.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
73230
diff
changeset
|
197 /* Clear the regexp cache w.r.t. a particular syntax table, |
5f8a28d018b2
(compile_pattern): Only check `cp->syntax_table' if needed.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
73230
diff
changeset
|
198 because it was changed. |
72945
d4ecc69b8d2e
* search.c (clear_regexp_cache): New function.
Chong Yidong <cyd@stupidchicken.com>
parents:
72725
diff
changeset
|
199 There is no danger of memory leak here because re_compile_pattern |
d4ecc69b8d2e
* search.c (clear_regexp_cache): New function.
Chong Yidong <cyd@stupidchicken.com>
parents:
72725
diff
changeset
|
200 automagically manages the memory in each re_pattern_buffer struct, |
d4ecc69b8d2e
* search.c (clear_regexp_cache): New function.
Chong Yidong <cyd@stupidchicken.com>
parents:
72725
diff
changeset
|
201 based on its `allocated' and `buffer' values. */ |
d4ecc69b8d2e
* search.c (clear_regexp_cache): New function.
Chong Yidong <cyd@stupidchicken.com>
parents:
72725
diff
changeset
|
202 void |
109126
aec1143e8d85
Convert (most) functions in src to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109100
diff
changeset
|
203 clear_regexp_cache (void) |
72945
d4ecc69b8d2e
* search.c (clear_regexp_cache): New function.
Chong Yidong <cyd@stupidchicken.com>
parents:
72725
diff
changeset
|
204 { |
d4ecc69b8d2e
* search.c (clear_regexp_cache): New function.
Chong Yidong <cyd@stupidchicken.com>
parents:
72725
diff
changeset
|
205 int i; |
d4ecc69b8d2e
* search.c (clear_regexp_cache): New function.
Chong Yidong <cyd@stupidchicken.com>
parents:
72725
diff
changeset
|
206 |
d4ecc69b8d2e
* search.c (clear_regexp_cache): New function.
Chong Yidong <cyd@stupidchicken.com>
parents:
72725
diff
changeset
|
207 for (i = 0; i < REGEXP_CACHE_SIZE; ++i) |
105400
ba465c0bd0c3
(clear_regexp_cache): Fix a typo in a comment.
Eli Zaretskii <eliz@gnu.org>
parents:
105399
diff
changeset
|
208 /* It's tempting to compare with the syntax-table we've actually changed, |
105401
791bb3c2ca7d
(clear_regexp_cache): Fix a typo in a comment.
Eli Zaretskii <eliz@gnu.org>
parents:
105400
diff
changeset
|
209 but it's not sufficient because char-table inheritance means that |
73232
5f8a28d018b2
(compile_pattern): Only check `cp->syntax_table' if needed.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
73230
diff
changeset
|
210 modifying one syntax-table can change others at the same time. */ |
5f8a28d018b2
(compile_pattern): Only check `cp->syntax_table' if needed.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
73230
diff
changeset
|
211 if (!EQ (searchbufs[i].syntax_table, Qt)) |
5f8a28d018b2
(compile_pattern): Only check `cp->syntax_table' if needed.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
73230
diff
changeset
|
212 searchbufs[i].regexp = Qnil; |
72945
d4ecc69b8d2e
* search.c (clear_regexp_cache): New function.
Chong Yidong <cyd@stupidchicken.com>
parents:
72725
diff
changeset
|
213 } |
d4ecc69b8d2e
* search.c (clear_regexp_cache): New function.
Chong Yidong <cyd@stupidchicken.com>
parents:
72725
diff
changeset
|
214 |
9605
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
215 /* Compile a regexp if necessary, but first check to see if there's one in |
10020
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
216 the cache. |
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
217 PATTERN is the pattern to compile. |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
218 TRANSLATE is a translation table for ignoring case, or nil for none. |
10020
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
219 REGP is the structure that says where to store the "register" |
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
220 values that will result from matching this pattern. |
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
221 If it is 0, we should compile the pattern not to record any |
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
222 subexpression bounds. |
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
223 POSIX is nonzero if we want full backtracking (POSIX style) |
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
224 for this pattern. 0 means backtrack only enough to get a valid match. */ |
9605
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
225 |
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
226 struct re_pattern_buffer * |
109126
aec1143e8d85
Convert (most) functions in src to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109100
diff
changeset
|
227 compile_pattern (Lisp_Object pattern, struct re_registers *regp, Lisp_Object translate, int posix, int multibyte) |
9605
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
228 { |
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
229 struct regexp_cache *cp, **cpp; |
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
230 |
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
231 for (cpp = &searchbuf_head; ; cpp = &cp->next) |
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
232 { |
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
233 cp = *cpp; |
27592
5cd59d1800ad
* search.c (compile_pattern): If a cache entry has a nil regexp, fill in that
Ken Raeburn <raeburn@raeburn.org>
parents:
26985
diff
changeset
|
234 /* Entries are initialized to nil, and may be set to nil by |
5cd59d1800ad
* search.c (compile_pattern): If a cache entry has a nil regexp, fill in that
Ken Raeburn <raeburn@raeburn.org>
parents:
26985
diff
changeset
|
235 compile_pattern_1 if the pattern isn't valid. Don't apply |
46444 | 236 string accessors in those cases. However, compile_pattern_1 |
237 is only applied to the cache entry we pick here to reuse. So | |
238 nil should never appear before a non-nil entry. */ | |
28507
b6f06a755c7d
make_number/XINT/XUINT conversions; EQ/== fixes; ==Qnil -> NILP
Ken Raeburn <raeburn@raeburn.org>
parents:
28387
diff
changeset
|
239 if (NILP (cp->regexp)) |
27592
5cd59d1800ad
* search.c (compile_pattern): If a cache entry has a nil regexp, fill in that
Ken Raeburn <raeburn@raeburn.org>
parents:
26985
diff
changeset
|
240 goto compile_it; |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
45263
diff
changeset
|
241 if (SCHARS (cp->regexp) == SCHARS (pattern) |
31486
a3dc5f987e8f
(compile_pattern): Check the multibyteness of cached
Kenichi Handa <handa@m17n.org>
parents:
29335
diff
changeset
|
242 && STRING_MULTIBYTE (cp->regexp) == STRING_MULTIBYTE (pattern) |
16275
a4bcfdc9bb66
(REGEXP_CACHE_SIZE): Increase to 20.
Richard M. Stallman <rms@gnu.org>
parents:
16152
diff
changeset
|
243 && !NILP (Fstring_equal (cp->regexp, pattern)) |
21531
5811a3129878
(compile_pattern, compile_pattern_1): Fix mixing of
Andreas Schwab <schwab@suse.de>
parents:
21514
diff
changeset
|
244 && EQ (cp->buf.translate, (! NILP (translate) ? translate : make_number (0))) |
17053
df904355f033
Include category.h and charset.h.
Karl Heuer <kwzh@gnu.org>
parents:
16880
diff
changeset
|
245 && cp->posix == posix |
73230
20801e603746
(compile_pattern): Only check `cp->syntax_table' if needed.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
73096
diff
changeset
|
246 && (EQ (cp->syntax_table, Qt) |
20801e603746
(compile_pattern): Only check `cp->syntax_table' if needed.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
73096
diff
changeset
|
247 || EQ (cp->syntax_table, current_buffer->syntax_table)) |
90760 | 248 && !NILP (Fequal (cp->whitespace_regexp, Vsearch_spaces_regexp)) |
249 && cp->buf.charset_unibyte == charset_unibyte) | |
9605
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
250 break; |
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
251 |
27592
5cd59d1800ad
* search.c (compile_pattern): If a cache entry has a nil regexp, fill in that
Ken Raeburn <raeburn@raeburn.org>
parents:
26985
diff
changeset
|
252 /* If we're at the end of the cache, compile into the nil cell |
5cd59d1800ad
* search.c (compile_pattern): If a cache entry has a nil regexp, fill in that
Ken Raeburn <raeburn@raeburn.org>
parents:
26985
diff
changeset
|
253 we found, or the last (least recently used) cell with a |
5cd59d1800ad
* search.c (compile_pattern): If a cache entry has a nil regexp, fill in that
Ken Raeburn <raeburn@raeburn.org>
parents:
26985
diff
changeset
|
254 string value. */ |
9605
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
255 if (cp->next == 0) |
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
256 { |
27592
5cd59d1800ad
* search.c (compile_pattern): If a cache entry has a nil regexp, fill in that
Ken Raeburn <raeburn@raeburn.org>
parents:
26985
diff
changeset
|
257 compile_it: |
90760 | 258 compile_pattern_1 (cp, pattern, translate, regp, posix); |
9605
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
259 break; |
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
260 } |
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
261 } |
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
262 |
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
263 /* When we get here, cp (aka *cpp) contains the compiled pattern, |
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
264 either because we found it in the cache or because we just compiled it. |
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
265 Move it to the front of the queue to mark it as most recently used. */ |
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
266 *cpp = cp->next; |
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
267 cp->next = searchbuf_head; |
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
268 searchbuf_head = cp; |
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
269 |
10141
afe81fd385eb
(compile_pattern): Call re_set_registers here.
Richard M. Stallman <rms@gnu.org>
parents:
10128
diff
changeset
|
270 /* Advise the searching functions about the space we have allocated |
afe81fd385eb
(compile_pattern): Call re_set_registers here.
Richard M. Stallman <rms@gnu.org>
parents:
10128
diff
changeset
|
271 for register data. */ |
afe81fd385eb
(compile_pattern): Call re_set_registers here.
Richard M. Stallman <rms@gnu.org>
parents:
10128
diff
changeset
|
272 if (regp) |
afe81fd385eb
(compile_pattern): Call re_set_registers here.
Richard M. Stallman <rms@gnu.org>
parents:
10128
diff
changeset
|
273 re_set_registers (&cp->buf, regp, regp->num_regs, regp->start, regp->end); |
afe81fd385eb
(compile_pattern): Call re_set_registers here.
Richard M. Stallman <rms@gnu.org>
parents:
10128
diff
changeset
|
274 |
108933 | 275 /* The compiled pattern can be used both for multibyte and unibyte |
90760 | 276 target. But, we have to tell which the pattern is used for. */ |
277 cp->buf.target_multibyte = multibyte; | |
278 | |
9605
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
279 return &cp->buf; |
603 | 280 } |
281 | |
282 | |
10020
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
283 static Lisp_Object |
109126
aec1143e8d85
Convert (most) functions in src to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109100
diff
changeset
|
284 looking_at_1 (Lisp_Object string, int posix) |
603 | 285 { |
286 Lisp_Object val; | |
287 unsigned char *p1, *p2; | |
103001
6b3176775d00
* search.c: Use EMACS_INT for buffer positions. Add prototypes.
Andreas Schwab <schwab@linux-m68k.org>
parents:
102999
diff
changeset
|
288 EMACS_INT s1, s2; |
110507
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
289 register EMACS_INT i; |
9605
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
290 struct re_pattern_buffer *bufp; |
603 | 291 |
10032
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10020
diff
changeset
|
292 if (running_asynch_code) |
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10020
diff
changeset
|
293 save_search_regs (); |
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10020
diff
changeset
|
294 |
72725
ef0421dfce16
(looking_at_1, string_match_1, search_command):
Richard M. Stallman <rms@gnu.org>
parents:
71987
diff
changeset
|
295 /* This is so set_image_of_range_1 in regex.c can find the EQV table. */ |
ef0421dfce16
(looking_at_1, string_match_1, search_command):
Richard M. Stallman <rms@gnu.org>
parents:
71987
diff
changeset
|
296 XCHAR_TABLE (current_buffer->case_canon_table)->extras[2] |
ef0421dfce16
(looking_at_1, string_match_1, search_command):
Richard M. Stallman <rms@gnu.org>
parents:
71987
diff
changeset
|
297 = current_buffer->case_eqv_table; |
ef0421dfce16
(looking_at_1, string_match_1, search_command):
Richard M. Stallman <rms@gnu.org>
parents:
71987
diff
changeset
|
298 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40269
diff
changeset
|
299 CHECK_STRING (string); |
81780
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
300 bufp = compile_pattern (string, |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
301 (NILP (Vinhibit_changing_match_data) |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
302 ? &search_regs : NULL), |
9605
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
303 (!NILP (current_buffer->case_fold_search) |
61189
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
304 ? current_buffer->case_canon_table : Qnil), |
20588
138c95482e6b
(search_buffer): Handle bytes vs chars in non-RE case.
Richard M. Stallman <rms@gnu.org>
parents:
20547
diff
changeset
|
305 posix, |
138c95482e6b
(search_buffer): Handle bytes vs chars in non-RE case.
Richard M. Stallman <rms@gnu.org>
parents:
20547
diff
changeset
|
306 !NILP (current_buffer->enable_multibyte_characters)); |
603 | 307 |
308 immediate_quit = 1; | |
309 QUIT; /* Do a pending quit right away, to avoid paradoxical behavior */ | |
310 | |
311 /* Get pointers and sizes of the two strings | |
312 that make up the visible portion of the buffer. */ | |
313 | |
314 p1 = BEGV_ADDR; | |
20545
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
315 s1 = GPT_BYTE - BEGV_BYTE; |
603 | 316 p2 = GAP_END_ADDR; |
20545
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
317 s2 = ZV_BYTE - GPT_BYTE; |
603 | 318 if (s1 < 0) |
319 { | |
320 p2 = p1; | |
20545
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
321 s2 = ZV_BYTE - BEGV_BYTE; |
603 | 322 s1 = 0; |
323 } | |
324 if (s2 < 0) | |
325 { | |
20545
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
326 s1 = ZV_BYTE - BEGV_BYTE; |
603 | 327 s2 = 0; |
328 } | |
17463
bb9ae80d22e2
(looking_at_1): Set re_match_object.
Richard M. Stallman <rms@gnu.org>
parents:
17284
diff
changeset
|
329 |
bb9ae80d22e2
(looking_at_1): Set re_match_object.
Richard M. Stallman <rms@gnu.org>
parents:
17284
diff
changeset
|
330 re_match_object = Qnil; |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48528
diff
changeset
|
331 |
9605
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
332 i = re_match_2 (bufp, (char *) p1, s1, (char *) p2, s2, |
81780
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
333 PT_BYTE - BEGV_BYTE, |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
334 (NILP (Vinhibit_changing_match_data) |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
335 ? &search_regs : NULL), |
20545
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
336 ZV_BYTE - BEGV_BYTE); |
26985
1121a5da20a5
(looking_at_1): Reset immediate_quit before modifying
Gerd Moellmann <gerd@gnu.org>
parents:
26982
diff
changeset
|
337 immediate_quit = 0; |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48528
diff
changeset
|
338 |
603 | 339 if (i == -2) |
340 matcher_overflow (); | |
341 | |
342 val = (0 <= i ? Qt : Qnil); | |
81780
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
343 if (NILP (Vinhibit_changing_match_data) && i >= 0) |
20545
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
344 for (i = 0; i < search_regs.num_regs; i++) |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
345 if (search_regs.start[i] >= 0) |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
346 { |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
347 search_regs.start[i] |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
348 = BYTE_TO_CHAR (search_regs.start[i] + BEGV_BYTE); |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
349 search_regs.end[i] |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
350 = BYTE_TO_CHAR (search_regs.end[i] + BEGV_BYTE); |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
351 } |
81780
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
352 |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
353 /* Set last_thing_searched only when match data is changed. */ |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
354 if (NILP (Vinhibit_changing_match_data)) |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
355 XSETBUFFER (last_thing_searched, current_buffer); |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
356 |
603 | 357 return val; |
358 } | |
359 | |
10020
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
360 DEFUN ("looking-at", Flooking_at, Slooking_at, 1, 1, 0, |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
361 doc: /* Return t if text after point matches regular expression REGEXP. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
362 This function modifies the match data that `match-beginning', |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
363 `match-end' and `match-data' access; save and restore the match |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
364 data if you want to preserve them. */) |
109179
8cfee7d2955f
Convert DEFUNs to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109165
diff
changeset
|
365 (Lisp_Object regexp) |
10020
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
366 { |
11213
d0811ba886f8
(Flooking_at, Fposix_looking_at): Change arg name.
Richard M. Stallman <rms@gnu.org>
parents:
10250
diff
changeset
|
367 return looking_at_1 (regexp, 0); |
10020
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
368 } |
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
369 |
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
370 DEFUN ("posix-looking-at", Fposix_looking_at, Sposix_looking_at, 1, 1, 0, |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
371 doc: /* Return t if text after point matches regular expression REGEXP. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
372 Find the longest match, in accord with Posix regular expression rules. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
373 This function modifies the match data that `match-beginning', |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
374 `match-end' and `match-data' access; save and restore the match |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
375 data if you want to preserve them. */) |
109179
8cfee7d2955f
Convert DEFUNs to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109165
diff
changeset
|
376 (Lisp_Object regexp) |
10020
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
377 { |
11213
d0811ba886f8
(Flooking_at, Fposix_looking_at): Change arg name.
Richard M. Stallman <rms@gnu.org>
parents:
10250
diff
changeset
|
378 return looking_at_1 (regexp, 1); |
10020
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
379 } |
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
380 |
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
381 static Lisp_Object |
109126
aec1143e8d85
Convert (most) functions in src to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109100
diff
changeset
|
382 string_match_1 (Lisp_Object regexp, Lisp_Object string, Lisp_Object start, int posix) |
603 | 383 { |
384 int val; | |
9605
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
385 struct re_pattern_buffer *bufp; |
103001
6b3176775d00
* search.c: Use EMACS_INT for buffer positions. Add prototypes.
Andreas Schwab <schwab@linux-m68k.org>
parents:
102999
diff
changeset
|
386 EMACS_INT pos, pos_byte; |
20588
138c95482e6b
(search_buffer): Handle bytes vs chars in non-RE case.
Richard M. Stallman <rms@gnu.org>
parents:
20547
diff
changeset
|
387 int i; |
603 | 388 |
10032
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10020
diff
changeset
|
389 if (running_asynch_code) |
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10020
diff
changeset
|
390 save_search_regs (); |
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10020
diff
changeset
|
391 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40269
diff
changeset
|
392 CHECK_STRING (regexp); |
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40269
diff
changeset
|
393 CHECK_STRING (string); |
603 | 394 |
395 if (NILP (start)) | |
20588
138c95482e6b
(search_buffer): Handle bytes vs chars in non-RE case.
Richard M. Stallman <rms@gnu.org>
parents:
20547
diff
changeset
|
396 pos = 0, pos_byte = 0; |
603 | 397 else |
398 { | |
110507
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
399 EMACS_INT len = SCHARS (string); |
603 | 400 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40269
diff
changeset
|
401 CHECK_NUMBER (start); |
20588
138c95482e6b
(search_buffer): Handle bytes vs chars in non-RE case.
Richard M. Stallman <rms@gnu.org>
parents:
20547
diff
changeset
|
402 pos = XINT (start); |
138c95482e6b
(search_buffer): Handle bytes vs chars in non-RE case.
Richard M. Stallman <rms@gnu.org>
parents:
20547
diff
changeset
|
403 if (pos < 0 && -pos <= len) |
138c95482e6b
(search_buffer): Handle bytes vs chars in non-RE case.
Richard M. Stallman <rms@gnu.org>
parents:
20547
diff
changeset
|
404 pos = len + pos; |
138c95482e6b
(search_buffer): Handle bytes vs chars in non-RE case.
Richard M. Stallman <rms@gnu.org>
parents:
20547
diff
changeset
|
405 else if (0 > pos || pos > len) |
603 | 406 args_out_of_range (string, start); |
20588
138c95482e6b
(search_buffer): Handle bytes vs chars in non-RE case.
Richard M. Stallman <rms@gnu.org>
parents:
20547
diff
changeset
|
407 pos_byte = string_char_to_byte (string, pos); |
603 | 408 } |
409 | |
72725
ef0421dfce16
(looking_at_1, string_match_1, search_command):
Richard M. Stallman <rms@gnu.org>
parents:
71987
diff
changeset
|
410 /* This is so set_image_of_range_1 in regex.c can find the EQV table. */ |
ef0421dfce16
(looking_at_1, string_match_1, search_command):
Richard M. Stallman <rms@gnu.org>
parents:
71987
diff
changeset
|
411 XCHAR_TABLE (current_buffer->case_canon_table)->extras[2] |
ef0421dfce16
(looking_at_1, string_match_1, search_command):
Richard M. Stallman <rms@gnu.org>
parents:
71987
diff
changeset
|
412 = current_buffer->case_eqv_table; |
ef0421dfce16
(looking_at_1, string_match_1, search_command):
Richard M. Stallman <rms@gnu.org>
parents:
71987
diff
changeset
|
413 |
81780
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
414 bufp = compile_pattern (regexp, |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
415 (NILP (Vinhibit_changing_match_data) |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
416 ? &search_regs : NULL), |
9605
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
417 (!NILP (current_buffer->case_fold_search) |
61189
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
418 ? current_buffer->case_canon_table : Qnil), |
20588
138c95482e6b
(search_buffer): Handle bytes vs chars in non-RE case.
Richard M. Stallman <rms@gnu.org>
parents:
20547
diff
changeset
|
419 posix, |
138c95482e6b
(search_buffer): Handle bytes vs chars in non-RE case.
Richard M. Stallman <rms@gnu.org>
parents:
20547
diff
changeset
|
420 STRING_MULTIBYTE (string)); |
603 | 421 immediate_quit = 1; |
17463
bb9ae80d22e2
(looking_at_1): Set re_match_object.
Richard M. Stallman <rms@gnu.org>
parents:
17284
diff
changeset
|
422 re_match_object = string; |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48528
diff
changeset
|
423 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
45263
diff
changeset
|
424 val = re_search (bufp, (char *) SDATA (string), |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
45263
diff
changeset
|
425 SBYTES (string), pos_byte, |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
45263
diff
changeset
|
426 SBYTES (string) - pos_byte, |
81780
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
427 (NILP (Vinhibit_changing_match_data) |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
428 ? &search_regs : NULL)); |
603 | 429 immediate_quit = 0; |
81780
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
430 |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
431 /* Set last_thing_searched only when match data is changed. */ |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
432 if (NILP (Vinhibit_changing_match_data)) |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
433 last_thing_searched = Qt; |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
434 |
603 | 435 if (val == -2) |
436 matcher_overflow (); | |
437 if (val < 0) return Qnil; | |
20588
138c95482e6b
(search_buffer): Handle bytes vs chars in non-RE case.
Richard M. Stallman <rms@gnu.org>
parents:
20547
diff
changeset
|
438 |
81780
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
439 if (NILP (Vinhibit_changing_match_data)) |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
440 for (i = 0; i < search_regs.num_regs; i++) |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
441 if (search_regs.start[i] >= 0) |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
442 { |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
443 search_regs.start[i] |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
444 = string_byte_to_char (string, search_regs.start[i]); |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
445 search_regs.end[i] |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
446 = string_byte_to_char (string, search_regs.end[i]); |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
447 } |
20588
138c95482e6b
(search_buffer): Handle bytes vs chars in non-RE case.
Richard M. Stallman <rms@gnu.org>
parents:
20547
diff
changeset
|
448 |
138c95482e6b
(search_buffer): Handle bytes vs chars in non-RE case.
Richard M. Stallman <rms@gnu.org>
parents:
20547
diff
changeset
|
449 return make_number (string_byte_to_char (string, val)); |
603 | 450 } |
842 | 451 |
10020
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
452 DEFUN ("string-match", Fstring_match, Sstring_match, 2, 3, 0, |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
453 doc: /* Return index of start of first match for REGEXP in STRING, or nil. |
66200 | 454 Matching ignores case if `case-fold-search' is non-nil. |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
455 If third arg START is non-nil, start search at that index in STRING. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
456 For index of first char beyond the match, do (match-end 0). |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
457 `match-end' and `match-beginning' also give indices of substrings |
48528
467b0e57d985
(Fstring_match): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
47692
diff
changeset
|
458 matched by parenthesis constructs in the pattern. |
467b0e57d985
(Fstring_match): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
47692
diff
changeset
|
459 |
467b0e57d985
(Fstring_match): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
47692
diff
changeset
|
460 You can use the function `match-string' to extract the substrings |
467b0e57d985
(Fstring_match): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
47692
diff
changeset
|
461 matched by the parenthesis constructions in REGEXP. */) |
109179
8cfee7d2955f
Convert DEFUNs to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109165
diff
changeset
|
462 (Lisp_Object regexp, Lisp_Object string, Lisp_Object start) |
10020
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
463 { |
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
464 return string_match_1 (regexp, string, start, 0); |
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
465 } |
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
466 |
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
467 DEFUN ("posix-string-match", Fposix_string_match, Sposix_string_match, 2, 3, 0, |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
468 doc: /* Return index of start of first match for REGEXP in STRING, or nil. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
469 Find the longest match, in accord with Posix regular expression rules. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
470 Case is ignored if `case-fold-search' is non-nil in the current buffer. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
471 If third arg START is non-nil, start search at that index in STRING. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
472 For index of first char beyond the match, do (match-end 0). |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
473 `match-end' and `match-beginning' also give indices of substrings |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
474 matched by parenthesis constructs in the pattern. */) |
109179
8cfee7d2955f
Convert DEFUNs to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109165
diff
changeset
|
475 (Lisp_Object regexp, Lisp_Object string, Lisp_Object start) |
10020
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
476 { |
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
477 return string_match_1 (regexp, string, start, 1); |
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
478 } |
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
479 |
842 | 480 /* Match REGEXP against STRING, searching all of STRING, |
481 and return the index of the match, or negative on failure. | |
482 This does not clobber the match data. */ | |
483 | |
484 int | |
109126
aec1143e8d85
Convert (most) functions in src to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109100
diff
changeset
|
485 fast_string_match (Lisp_Object regexp, Lisp_Object string) |
842 | 486 { |
487 int val; | |
9605
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
488 struct re_pattern_buffer *bufp; |
842 | 489 |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
490 bufp = compile_pattern (regexp, 0, Qnil, |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
491 0, STRING_MULTIBYTE (string)); |
842 | 492 immediate_quit = 1; |
17463
bb9ae80d22e2
(looking_at_1): Set re_match_object.
Richard M. Stallman <rms@gnu.org>
parents:
17284
diff
changeset
|
493 re_match_object = string; |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48528
diff
changeset
|
494 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
45263
diff
changeset
|
495 val = re_search (bufp, (char *) SDATA (string), |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
45263
diff
changeset
|
496 SBYTES (string), 0, |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
45263
diff
changeset
|
497 SBYTES (string), 0); |
842 | 498 immediate_quit = 0; |
499 return val; | |
500 } | |
17053
df904355f033
Include category.h and charset.h.
Karl Heuer <kwzh@gnu.org>
parents:
16880
diff
changeset
|
501 |
df904355f033
Include category.h and charset.h.
Karl Heuer <kwzh@gnu.org>
parents:
16880
diff
changeset
|
502 /* Match REGEXP against STRING, searching all of STRING ignoring case, |
df904355f033
Include category.h and charset.h.
Karl Heuer <kwzh@gnu.org>
parents:
16880
diff
changeset
|
503 and return the index of the match, or negative on failure. |
20588
138c95482e6b
(search_buffer): Handle bytes vs chars in non-RE case.
Richard M. Stallman <rms@gnu.org>
parents:
20547
diff
changeset
|
504 This does not clobber the match data. |
138c95482e6b
(search_buffer): Handle bytes vs chars in non-RE case.
Richard M. Stallman <rms@gnu.org>
parents:
20547
diff
changeset
|
505 We assume that STRING contains single-byte characters. */ |
17053
df904355f033
Include category.h and charset.h.
Karl Heuer <kwzh@gnu.org>
parents:
16880
diff
changeset
|
506 |
df904355f033
Include category.h and charset.h.
Karl Heuer <kwzh@gnu.org>
parents:
16880
diff
changeset
|
507 int |
109126
aec1143e8d85
Convert (most) functions in src to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109100
diff
changeset
|
508 fast_c_string_match_ignore_case (Lisp_Object regexp, const char *string) |
17053
df904355f033
Include category.h and charset.h.
Karl Heuer <kwzh@gnu.org>
parents:
16880
diff
changeset
|
509 { |
df904355f033
Include category.h and charset.h.
Karl Heuer <kwzh@gnu.org>
parents:
16880
diff
changeset
|
510 int val; |
df904355f033
Include category.h and charset.h.
Karl Heuer <kwzh@gnu.org>
parents:
16880
diff
changeset
|
511 struct re_pattern_buffer *bufp; |
110507
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
512 size_t len = strlen (string); |
17053
df904355f033
Include category.h and charset.h.
Karl Heuer <kwzh@gnu.org>
parents:
16880
diff
changeset
|
513 |
20588
138c95482e6b
(search_buffer): Handle bytes vs chars in non-RE case.
Richard M. Stallman <rms@gnu.org>
parents:
20547
diff
changeset
|
514 regexp = string_make_unibyte (regexp); |
18193
4e4c8edb56da
(fast_c_string_match_ignore_case):
Richard M. Stallman <rms@gnu.org>
parents:
18124
diff
changeset
|
515 re_match_object = Qt; |
17053
df904355f033
Include category.h and charset.h.
Karl Heuer <kwzh@gnu.org>
parents:
16880
diff
changeset
|
516 bufp = compile_pattern (regexp, 0, |
61189
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
517 Vascii_canon_table, 0, |
20671
be91d6130341
(compile_pattern_1): If representation of STRING
Karl Heuer <kwzh@gnu.org>
parents:
20588
diff
changeset
|
518 0); |
17053
df904355f033
Include category.h and charset.h.
Karl Heuer <kwzh@gnu.org>
parents:
16880
diff
changeset
|
519 immediate_quit = 1; |
df904355f033
Include category.h and charset.h.
Karl Heuer <kwzh@gnu.org>
parents:
16880
diff
changeset
|
520 val = re_search (bufp, string, len, 0, len, 0); |
df904355f033
Include category.h and charset.h.
Karl Heuer <kwzh@gnu.org>
parents:
16880
diff
changeset
|
521 immediate_quit = 0; |
df904355f033
Include category.h and charset.h.
Karl Heuer <kwzh@gnu.org>
parents:
16880
diff
changeset
|
522 return val; |
df904355f033
Include category.h and charset.h.
Karl Heuer <kwzh@gnu.org>
parents:
16880
diff
changeset
|
523 } |
57572
d226830a814e
(fast_string_match_ignore_case): New function.
Kenichi Handa <handa@m17n.org>
parents:
56429
diff
changeset
|
524 |
d226830a814e
(fast_string_match_ignore_case): New function.
Kenichi Handa <handa@m17n.org>
parents:
56429
diff
changeset
|
525 /* Like fast_string_match but ignore case. */ |
d226830a814e
(fast_string_match_ignore_case): New function.
Kenichi Handa <handa@m17n.org>
parents:
56429
diff
changeset
|
526 |
d226830a814e
(fast_string_match_ignore_case): New function.
Kenichi Handa <handa@m17n.org>
parents:
56429
diff
changeset
|
527 int |
109126
aec1143e8d85
Convert (most) functions in src to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109100
diff
changeset
|
528 fast_string_match_ignore_case (Lisp_Object regexp, Lisp_Object string) |
57572
d226830a814e
(fast_string_match_ignore_case): New function.
Kenichi Handa <handa@m17n.org>
parents:
56429
diff
changeset
|
529 { |
d226830a814e
(fast_string_match_ignore_case): New function.
Kenichi Handa <handa@m17n.org>
parents:
56429
diff
changeset
|
530 int val; |
d226830a814e
(fast_string_match_ignore_case): New function.
Kenichi Handa <handa@m17n.org>
parents:
56429
diff
changeset
|
531 struct re_pattern_buffer *bufp; |
d226830a814e
(fast_string_match_ignore_case): New function.
Kenichi Handa <handa@m17n.org>
parents:
56429
diff
changeset
|
532 |
61189
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
533 bufp = compile_pattern (regexp, 0, Vascii_canon_table, |
57572
d226830a814e
(fast_string_match_ignore_case): New function.
Kenichi Handa <handa@m17n.org>
parents:
56429
diff
changeset
|
534 0, STRING_MULTIBYTE (string)); |
d226830a814e
(fast_string_match_ignore_case): New function.
Kenichi Handa <handa@m17n.org>
parents:
56429
diff
changeset
|
535 immediate_quit = 1; |
d226830a814e
(fast_string_match_ignore_case): New function.
Kenichi Handa <handa@m17n.org>
parents:
56429
diff
changeset
|
536 re_match_object = string; |
d226830a814e
(fast_string_match_ignore_case): New function.
Kenichi Handa <handa@m17n.org>
parents:
56429
diff
changeset
|
537 |
d226830a814e
(fast_string_match_ignore_case): New function.
Kenichi Handa <handa@m17n.org>
parents:
56429
diff
changeset
|
538 val = re_search (bufp, (char *) SDATA (string), |
d226830a814e
(fast_string_match_ignore_case): New function.
Kenichi Handa <handa@m17n.org>
parents:
56429
diff
changeset
|
539 SBYTES (string), 0, |
d226830a814e
(fast_string_match_ignore_case): New function.
Kenichi Handa <handa@m17n.org>
parents:
56429
diff
changeset
|
540 SBYTES (string), 0); |
d226830a814e
(fast_string_match_ignore_case): New function.
Kenichi Handa <handa@m17n.org>
parents:
56429
diff
changeset
|
541 immediate_quit = 0; |
d226830a814e
(fast_string_match_ignore_case): New function.
Kenichi Handa <handa@m17n.org>
parents:
56429
diff
changeset
|
542 return val; |
d226830a814e
(fast_string_match_ignore_case): New function.
Kenichi Handa <handa@m17n.org>
parents:
56429
diff
changeset
|
543 } |
603 | 544 |
105399
2f74d2880f10
(fast_looking_at): Fix a typo in the commentary.
Eli Zaretskii <eliz@gnu.org>
parents:
103001
diff
changeset
|
545 /* Match REGEXP against the characters after POS to LIMIT, and return |
101966
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
546 the number of matched characters. If STRING is non-nil, match |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
547 against the characters in it. In that case, POS and LIMIT are |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
548 indices into the string. This function doesn't modify the match |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
549 data. */ |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
550 |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
551 EMACS_INT |
109126
aec1143e8d85
Convert (most) functions in src to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109100
diff
changeset
|
552 fast_looking_at (Lisp_Object regexp, EMACS_INT pos, EMACS_INT pos_byte, EMACS_INT limit, EMACS_INT limit_byte, Lisp_Object string) |
101966
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
553 { |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
554 int multibyte; |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
555 struct re_pattern_buffer *buf; |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
556 unsigned char *p1, *p2; |
103001
6b3176775d00
* search.c: Use EMACS_INT for buffer positions. Add prototypes.
Andreas Schwab <schwab@linux-m68k.org>
parents:
102999
diff
changeset
|
557 EMACS_INT s1, s2; |
101966
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
558 EMACS_INT len; |
108933 | 559 |
101966
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
560 if (STRINGP (string)) |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
561 { |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
562 if (pos_byte < 0) |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
563 pos_byte = string_char_to_byte (string, pos); |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
564 if (limit_byte < 0) |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
565 limit_byte = string_char_to_byte (string, limit); |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
566 p1 = NULL; |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
567 s1 = 0; |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
568 p2 = SDATA (string); |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
569 s2 = SBYTES (string); |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
570 re_match_object = string; |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
571 multibyte = STRING_MULTIBYTE (string); |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
572 } |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
573 else |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
574 { |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
575 if (pos_byte < 0) |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
576 pos_byte = CHAR_TO_BYTE (pos); |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
577 if (limit_byte < 0) |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
578 limit_byte = CHAR_TO_BYTE (limit); |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
579 pos_byte -= BEGV_BYTE; |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
580 limit_byte -= BEGV_BYTE; |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
581 p1 = BEGV_ADDR; |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
582 s1 = GPT_BYTE - BEGV_BYTE; |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
583 p2 = GAP_END_ADDR; |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
584 s2 = ZV_BYTE - GPT_BYTE; |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
585 if (s1 < 0) |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
586 { |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
587 p2 = p1; |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
588 s2 = ZV_BYTE - BEGV_BYTE; |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
589 s1 = 0; |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
590 } |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
591 if (s2 < 0) |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
592 { |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
593 s1 = ZV_BYTE - BEGV_BYTE; |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
594 s2 = 0; |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
595 } |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
596 re_match_object = Qnil; |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
597 multibyte = ! NILP (current_buffer->enable_multibyte_characters); |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
598 } |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
599 |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
600 buf = compile_pattern (regexp, 0, Qnil, 0, multibyte); |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
601 immediate_quit = 1; |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
602 len = re_match_2 (buf, (char *) p1, s1, (char *) p2, s2, |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
603 pos_byte, NULL, limit_byte); |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
604 immediate_quit = 0; |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
605 |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
606 return len; |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
607 } |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
608 |
43952e9a02cd
(fast_looking_at): New function.
Kenichi Handa <handa@m17n.org>
parents:
100951
diff
changeset
|
609 |
9410
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
610 /* The newline cache: remembering which sections of text have no newlines. */ |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
611 |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
612 /* If the user has requested newline caching, make sure it's on. |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
613 Otherwise, make sure it's off. |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
614 This is our cheezy way of associating an action with the change of |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
615 state of a buffer-local variable. */ |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
616 static void |
109126
aec1143e8d85
Convert (most) functions in src to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109100
diff
changeset
|
617 newline_cache_on_off (struct buffer *buf) |
9410
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
618 { |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
619 if (NILP (buf->cache_long_line_scans)) |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
620 { |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
621 /* It should be off. */ |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
622 if (buf->newline_cache) |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
623 { |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
624 free_region_cache (buf->newline_cache); |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
625 buf->newline_cache = 0; |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
626 } |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
627 } |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
628 else |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
629 { |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
630 /* It should be on. */ |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
631 if (buf->newline_cache == 0) |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
632 buf->newline_cache = new_region_cache (); |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
633 } |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
634 } |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
635 |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
636 |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
637 /* Search for COUNT instances of the character TARGET between START and END. |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
638 |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
639 If COUNT is positive, search forwards; END must be >= START. |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
640 If COUNT is negative, search backwards for the -COUNTth instance; |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
641 END must be <= START. |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
642 If COUNT is zero, do anything you please; run rogue, for all I care. |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
643 |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
644 If END is zero, use BEGV or ZV instead, as appropriate for the |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
645 direction indicated by COUNT. |
648 | 646 |
647 If we find COUNT instances, set *SHORTAGE to zero, and return the | |
57735 | 648 position past the COUNTth match. Note that for reverse motion |
1413 | 649 this is not the same as the usual convention for Emacs motion commands. |
648 | 650 |
9410
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
651 If we don't find COUNT instances before reaching END, set *SHORTAGE |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
652 to the number of TARGETs left unfound, and return END. |
648 | 653 |
5756
a54c236b43c6
(scan_buffer): New arg ALLOW_QUIT.
Richard M. Stallman <rms@gnu.org>
parents:
5556
diff
changeset
|
654 If ALLOW_QUIT is non-zero, set immediate_quit. That's good to do |
a54c236b43c6
(scan_buffer): New arg ALLOW_QUIT.
Richard M. Stallman <rms@gnu.org>
parents:
5556
diff
changeset
|
655 except when inside redisplay. */ |
a54c236b43c6
(scan_buffer): New arg ALLOW_QUIT.
Richard M. Stallman <rms@gnu.org>
parents:
5556
diff
changeset
|
656 |
110507
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
657 EMACS_INT |
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
658 scan_buffer (register int target, EMACS_INT start, EMACS_INT end, |
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
659 EMACS_INT count, int *shortage, int allow_quit) |
603 | 660 { |
9410
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
661 struct region_cache *newline_cache; |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48528
diff
changeset
|
662 int direction; |
648 | 663 |
9410
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
664 if (count > 0) |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
665 { |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
666 direction = 1; |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
667 if (! end) end = ZV; |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
668 } |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
669 else |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
670 { |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
671 direction = -1; |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
672 if (! end) end = BEGV; |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
673 } |
648 | 674 |
9410
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
675 newline_cache_on_off (current_buffer); |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
676 newline_cache = current_buffer->newline_cache; |
603 | 677 |
678 if (shortage != 0) | |
679 *shortage = 0; | |
680 | |
5756
a54c236b43c6
(scan_buffer): New arg ALLOW_QUIT.
Richard M. Stallman <rms@gnu.org>
parents:
5556
diff
changeset
|
681 immediate_quit = allow_quit; |
603 | 682 |
648 | 683 if (count > 0) |
9410
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
684 while (start != end) |
603 | 685 { |
9410
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
686 /* Our innermost scanning loop is very simple; it doesn't know |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
687 about gaps, buffer ends, or the newline cache. ceiling is |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
688 the position of the last character before the next such |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
689 obstacle --- the last character the dumb search loop should |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
690 examine. */ |
103001
6b3176775d00
* search.c: Use EMACS_INT for buffer positions. Add prototypes.
Andreas Schwab <schwab@linux-m68k.org>
parents:
102999
diff
changeset
|
691 EMACS_INT ceiling_byte = CHAR_TO_BYTE (end) - 1; |
6b3176775d00
* search.c: Use EMACS_INT for buffer positions. Add prototypes.
Andreas Schwab <schwab@linux-m68k.org>
parents:
102999
diff
changeset
|
692 EMACS_INT start_byte = CHAR_TO_BYTE (start); |
6b3176775d00
* search.c: Use EMACS_INT for buffer positions. Add prototypes.
Andreas Schwab <schwab@linux-m68k.org>
parents:
102999
diff
changeset
|
693 EMACS_INT tem; |
9410
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
694 |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
695 /* If we're looking for a newline, consult the newline cache |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
696 to see where we can avoid some scanning. */ |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
697 if (target == '\n' && newline_cache) |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
698 { |
110507
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
699 EMACS_INT next_change; |
9410
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
700 immediate_quit = 0; |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
701 while (region_cache_forward |
20545
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
702 (current_buffer, newline_cache, start_byte, &next_change)) |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
703 start_byte = next_change; |
9452
76f75b9091f1
(scan_buffer): After temporarily turning immediate_quit off, turn it
Jim Blandy <jimb@redhat.com>
parents:
9410
diff
changeset
|
704 immediate_quit = allow_quit; |
9410
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
705 |
20545
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
706 /* START should never be after END. */ |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
707 if (start_byte > ceiling_byte) |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
708 start_byte = ceiling_byte; |
9410
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
709 |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
710 /* Now the text after start is an unknown region, and |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
711 next_change is the position of the next known region. */ |
20545
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
712 ceiling_byte = min (next_change - 1, ceiling_byte); |
9410
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
713 } |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
714 |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
715 /* The dumb loop can only scan text stored in contiguous |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
716 bytes. BUFFER_CEILING_OF returns the last character |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
717 position that is contiguous, so the ceiling is the |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
718 position after that. */ |
21457
8c6ea32aadfa
(min, max): Make these macros, not functions.
Karl Heuer <kwzh@gnu.org>
parents:
21248
diff
changeset
|
719 tem = BUFFER_CEILING_OF (start_byte); |
8c6ea32aadfa
(min, max): Make these macros, not functions.
Karl Heuer <kwzh@gnu.org>
parents:
21248
diff
changeset
|
720 ceiling_byte = min (tem, ceiling_byte); |
9410
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
721 |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
722 { |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48528
diff
changeset
|
723 /* The termination address of the dumb loop. */ |
20545
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
724 register unsigned char *ceiling_addr |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
725 = BYTE_POS_ADDR (ceiling_byte) + 1; |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
726 register unsigned char *cursor |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
727 = BYTE_POS_ADDR (start_byte); |
9410
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
728 unsigned char *base = cursor; |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
729 |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
730 while (cursor < ceiling_addr) |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
731 { |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
732 unsigned char *scan_start = cursor; |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
733 |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
734 /* The dumb loop. */ |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
735 while (*cursor != target && ++cursor < ceiling_addr) |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
736 ; |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
737 |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
738 /* If we're looking for newlines, cache the fact that |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
739 the region from start to cursor is free of them. */ |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
740 if (target == '\n' && newline_cache) |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
741 know_region_cache (current_buffer, newline_cache, |
20545
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
742 start_byte + scan_start - base, |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
743 start_byte + cursor - base); |
9410
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
744 |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
745 /* Did we find the target character? */ |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
746 if (cursor < ceiling_addr) |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
747 { |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
748 if (--count == 0) |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
749 { |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
750 immediate_quit = 0; |
20545
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
751 return BYTE_TO_CHAR (start_byte + cursor - base + 1); |
9410
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
752 } |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
753 cursor++; |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
754 } |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
755 } |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
756 |
20545
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
757 start = BYTE_TO_CHAR (start_byte + cursor - base); |
9410
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
758 } |
603 | 759 } |
760 else | |
9410
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
761 while (start > end) |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
762 { |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
763 /* The last character to check before the next obstacle. */ |
103001
6b3176775d00
* search.c: Use EMACS_INT for buffer positions. Add prototypes.
Andreas Schwab <schwab@linux-m68k.org>
parents:
102999
diff
changeset
|
764 EMACS_INT ceiling_byte = CHAR_TO_BYTE (end); |
6b3176775d00
* search.c: Use EMACS_INT for buffer positions. Add prototypes.
Andreas Schwab <schwab@linux-m68k.org>
parents:
102999
diff
changeset
|
765 EMACS_INT start_byte = CHAR_TO_BYTE (start); |
6b3176775d00
* search.c: Use EMACS_INT for buffer positions. Add prototypes.
Andreas Schwab <schwab@linux-m68k.org>
parents:
102999
diff
changeset
|
766 EMACS_INT tem; |
9410
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
767 |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
768 /* Consult the newline cache, if appropriate. */ |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
769 if (target == '\n' && newline_cache) |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
770 { |
110507
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
771 EMACS_INT next_change; |
9410
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
772 immediate_quit = 0; |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
773 while (region_cache_backward |
20545
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
774 (current_buffer, newline_cache, start_byte, &next_change)) |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
775 start_byte = next_change; |
9452
76f75b9091f1
(scan_buffer): After temporarily turning immediate_quit off, turn it
Jim Blandy <jimb@redhat.com>
parents:
9410
diff
changeset
|
776 immediate_quit = allow_quit; |
9410
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
777 |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
778 /* Start should never be at or before end. */ |
20545
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
779 if (start_byte <= ceiling_byte) |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
780 start_byte = ceiling_byte + 1; |
9410
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
781 |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
782 /* Now the text before start is an unknown region, and |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
783 next_change is the position of the next known region. */ |
20545
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
784 ceiling_byte = max (next_change, ceiling_byte); |
9410
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
785 } |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
786 |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
787 /* Stop scanning before the gap. */ |
21457
8c6ea32aadfa
(min, max): Make these macros, not functions.
Karl Heuer <kwzh@gnu.org>
parents:
21248
diff
changeset
|
788 tem = BUFFER_FLOOR_OF (start_byte - 1); |
8c6ea32aadfa
(min, max): Make these macros, not functions.
Karl Heuer <kwzh@gnu.org>
parents:
21248
diff
changeset
|
789 ceiling_byte = max (tem, ceiling_byte); |
9410
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
790 |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
791 { |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
792 /* The termination address of the dumb loop. */ |
20545
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
793 register unsigned char *ceiling_addr = BYTE_POS_ADDR (ceiling_byte); |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
794 register unsigned char *cursor = BYTE_POS_ADDR (start_byte - 1); |
9410
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
795 unsigned char *base = cursor; |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
796 |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
797 while (cursor >= ceiling_addr) |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
798 { |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
799 unsigned char *scan_start = cursor; |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
800 |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
801 while (*cursor != target && --cursor >= ceiling_addr) |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
802 ; |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
803 |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
804 /* If we're looking for newlines, cache the fact that |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
805 the region from after the cursor to start is free of them. */ |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
806 if (target == '\n' && newline_cache) |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
807 know_region_cache (current_buffer, newline_cache, |
20545
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
808 start_byte + cursor - base, |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
809 start_byte + scan_start - base); |
9410
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
810 |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
811 /* Did we find the target character? */ |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
812 if (cursor >= ceiling_addr) |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
813 { |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
814 if (++count >= 0) |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
815 { |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
816 immediate_quit = 0; |
20545
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
817 return BYTE_TO_CHAR (start_byte + cursor - base); |
9410
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
818 } |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
819 cursor--; |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
820 } |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
821 } |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
822 |
20545
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
823 start = BYTE_TO_CHAR (start_byte + cursor - base); |
9410
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
824 } |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
825 } |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
826 |
603 | 827 immediate_quit = 0; |
828 if (shortage != 0) | |
648 | 829 *shortage = count * direction; |
9410
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
830 return start; |
603 | 831 } |
20545
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
832 |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
833 /* Search for COUNT instances of a line boundary, which means either a |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
834 newline or (if selective display enabled) a carriage return. |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
835 Start at START. If COUNT is negative, search backwards. |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
836 |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
837 We report the resulting position by calling TEMP_SET_PT_BOTH. |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
838 |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
839 If we find COUNT instances. we position after (always after, |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
840 even if scanning backwards) the COUNTth match, and return 0. |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
841 |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
842 If we don't find COUNT instances before reaching the end of the |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
843 buffer (or the beginning, if scanning backwards), we return |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
844 the number of line boundaries left unfound, and position at |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
845 the limit we bumped up against. |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
846 |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
847 If ALLOW_QUIT is non-zero, set immediate_quit. That's good to do |
20547
07053199a368
(scan_newline): Always restore prev value of immediate_quit.
Richard M. Stallman <rms@gnu.org>
parents:
20545
diff
changeset
|
848 except in special cases. */ |
20545
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
849 |
110507
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
850 EMACS_INT |
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
851 scan_newline (EMACS_INT start, EMACS_INT start_byte, |
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
852 EMACS_INT limit, EMACS_INT limit_byte, |
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
853 register EMACS_INT count, int allow_quit) |
20545
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
854 { |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
855 int direction = ((count > 0) ? 1 : -1); |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
856 |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
857 register unsigned char *cursor; |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
858 unsigned char *base; |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
859 |
103001
6b3176775d00
* search.c: Use EMACS_INT for buffer positions. Add prototypes.
Andreas Schwab <schwab@linux-m68k.org>
parents:
102999
diff
changeset
|
860 EMACS_INT ceiling; |
20545
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
861 register unsigned char *ceiling_addr; |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
862 |
20547
07053199a368
(scan_newline): Always restore prev value of immediate_quit.
Richard M. Stallman <rms@gnu.org>
parents:
20545
diff
changeset
|
863 int old_immediate_quit = immediate_quit; |
07053199a368
(scan_newline): Always restore prev value of immediate_quit.
Richard M. Stallman <rms@gnu.org>
parents:
20545
diff
changeset
|
864 |
20545
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
865 /* The code that follows is like scan_buffer |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
866 but checks for either newline or carriage return. */ |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
867 |
20547
07053199a368
(scan_newline): Always restore prev value of immediate_quit.
Richard M. Stallman <rms@gnu.org>
parents:
20545
diff
changeset
|
868 if (allow_quit) |
07053199a368
(scan_newline): Always restore prev value of immediate_quit.
Richard M. Stallman <rms@gnu.org>
parents:
20545
diff
changeset
|
869 immediate_quit++; |
20545
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
870 |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
871 start_byte = CHAR_TO_BYTE (start); |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
872 |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
873 if (count > 0) |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
874 { |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
875 while (start_byte < limit_byte) |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
876 { |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
877 ceiling = BUFFER_CEILING_OF (start_byte); |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
878 ceiling = min (limit_byte - 1, ceiling); |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
879 ceiling_addr = BYTE_POS_ADDR (ceiling) + 1; |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
880 base = (cursor = BYTE_POS_ADDR (start_byte)); |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
881 while (1) |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
882 { |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
883 while (*cursor != '\n' && ++cursor != ceiling_addr) |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
884 ; |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
885 |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
886 if (cursor != ceiling_addr) |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
887 { |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
888 if (--count == 0) |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
889 { |
20547
07053199a368
(scan_newline): Always restore prev value of immediate_quit.
Richard M. Stallman <rms@gnu.org>
parents:
20545
diff
changeset
|
890 immediate_quit = old_immediate_quit; |
20545
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
891 start_byte = start_byte + cursor - base + 1; |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
892 start = BYTE_TO_CHAR (start_byte); |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
893 TEMP_SET_PT_BOTH (start, start_byte); |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
894 return 0; |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
895 } |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
896 else |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
897 if (++cursor == ceiling_addr) |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
898 break; |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
899 } |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
900 else |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
901 break; |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
902 } |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
903 start_byte += cursor - base; |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
904 } |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
905 } |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
906 else |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
907 { |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
908 while (start_byte > limit_byte) |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
909 { |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
910 ceiling = BUFFER_FLOOR_OF (start_byte - 1); |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
911 ceiling = max (limit_byte, ceiling); |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
912 ceiling_addr = BYTE_POS_ADDR (ceiling) - 1; |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
913 base = (cursor = BYTE_POS_ADDR (start_byte - 1) + 1); |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
914 while (1) |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
915 { |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
916 while (--cursor != ceiling_addr && *cursor != '\n') |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
917 ; |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
918 |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
919 if (cursor != ceiling_addr) |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
920 { |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
921 if (++count == 0) |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
922 { |
20547
07053199a368
(scan_newline): Always restore prev value of immediate_quit.
Richard M. Stallman <rms@gnu.org>
parents:
20545
diff
changeset
|
923 immediate_quit = old_immediate_quit; |
20545
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
924 /* Return the position AFTER the match we found. */ |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
925 start_byte = start_byte + cursor - base + 1; |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
926 start = BYTE_TO_CHAR (start_byte); |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
927 TEMP_SET_PT_BOTH (start, start_byte); |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
928 return 0; |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
929 } |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
930 } |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
931 else |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
932 break; |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
933 } |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
934 /* Here we add 1 to compensate for the last decrement |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
935 of CURSOR, which took it past the valid range. */ |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
936 start_byte += cursor - base + 1; |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
937 } |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
938 } |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
939 |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
940 TEMP_SET_PT_BOTH (limit, limit_byte); |
20547
07053199a368
(scan_newline): Always restore prev value of immediate_quit.
Richard M. Stallman <rms@gnu.org>
parents:
20545
diff
changeset
|
941 immediate_quit = old_immediate_quit; |
20545
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
942 |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
943 return count * direction; |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
944 } |
603 | 945 |
110507
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
946 EMACS_INT |
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
947 find_next_newline_no_quit (EMACS_INT from, EMACS_INT cnt) |
7891
7d8e0f338e4a
(find_next_newline_no_quit): New function.
Richard M. Stallman <rms@gnu.org>
parents:
7856
diff
changeset
|
948 { |
9410
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
949 return scan_buffer ('\n', from, 0, cnt, (int *) 0, 0); |
7891
7d8e0f338e4a
(find_next_newline_no_quit): New function.
Richard M. Stallman <rms@gnu.org>
parents:
7856
diff
changeset
|
950 } |
7d8e0f338e4a
(find_next_newline_no_quit): New function.
Richard M. Stallman <rms@gnu.org>
parents:
7856
diff
changeset
|
951 |
9410
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
952 /* Like find_next_newline, but returns position before the newline, |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
953 not after, and only search up to TO. This isn't just |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
954 find_next_newline (...)-1, because you might hit TO. */ |
20545
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
955 |
110507
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
956 EMACS_INT |
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
957 find_before_next_newline (EMACS_INT from, EMACS_INT to, EMACS_INT cnt) |
9410
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
958 { |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
959 int shortage; |
110507
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
960 EMACS_INT pos = scan_buffer ('\n', from, to, cnt, &shortage, 1); |
9410
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
961 |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
962 if (shortage == 0) |
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
963 pos--; |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48528
diff
changeset
|
964 |
9410
8598c3d6f2f0
* search.c: #include "region-cache.h".
Jim Blandy <jimb@redhat.com>
parents:
9319
diff
changeset
|
965 return pos; |
603 | 966 } |
967 | |
968 /* Subroutines of Lisp buffer search functions. */ | |
969 | |
970 static Lisp_Object | |
110507
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
971 search_command (Lisp_Object string, Lisp_Object bound, Lisp_Object noerror, |
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
972 Lisp_Object count, int direction, int RE, int posix) |
603 | 973 { |
974 register int np; | |
110507
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
975 EMACS_INT lim, lim_byte; |
603 | 976 int n = direction; |
977 | |
978 if (!NILP (count)) | |
979 { | |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40269
diff
changeset
|
980 CHECK_NUMBER (count); |
603 | 981 n *= XINT (count); |
982 } | |
983 | |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40269
diff
changeset
|
984 CHECK_STRING (string); |
603 | 985 if (NILP (bound)) |
20824
97df0c6e753d
(search_buffer): New args pos_byte and lim_byte.
Richard M. Stallman <rms@gnu.org>
parents:
20792
diff
changeset
|
986 { |
97df0c6e753d
(search_buffer): New args pos_byte and lim_byte.
Richard M. Stallman <rms@gnu.org>
parents:
20792
diff
changeset
|
987 if (n > 0) |
97df0c6e753d
(search_buffer): New args pos_byte and lim_byte.
Richard M. Stallman <rms@gnu.org>
parents:
20792
diff
changeset
|
988 lim = ZV, lim_byte = ZV_BYTE; |
97df0c6e753d
(search_buffer): New args pos_byte and lim_byte.
Richard M. Stallman <rms@gnu.org>
parents:
20792
diff
changeset
|
989 else |
97df0c6e753d
(search_buffer): New args pos_byte and lim_byte.
Richard M. Stallman <rms@gnu.org>
parents:
20792
diff
changeset
|
990 lim = BEGV, lim_byte = BEGV_BYTE; |
97df0c6e753d
(search_buffer): New args pos_byte and lim_byte.
Richard M. Stallman <rms@gnu.org>
parents:
20792
diff
changeset
|
991 } |
603 | 992 else |
993 { | |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40269
diff
changeset
|
994 CHECK_NUMBER_COERCE_MARKER (bound); |
603 | 995 lim = XINT (bound); |
16039
855c8d8ba0f0
Change all references from point to PT.
Karl Heuer <kwzh@gnu.org>
parents:
15667
diff
changeset
|
996 if (n > 0 ? lim < PT : lim > PT) |
603 | 997 error ("Invalid search bound (wrong side of point)"); |
998 if (lim > ZV) | |
20824
97df0c6e753d
(search_buffer): New args pos_byte and lim_byte.
Richard M. Stallman <rms@gnu.org>
parents:
20792
diff
changeset
|
999 lim = ZV, lim_byte = ZV_BYTE; |
20924
eda7e44ef9d9
(search_command): Check LIM in valid range
Karl Heuer <kwzh@gnu.org>
parents:
20898
diff
changeset
|
1000 else if (lim < BEGV) |
20824
97df0c6e753d
(search_buffer): New args pos_byte and lim_byte.
Richard M. Stallman <rms@gnu.org>
parents:
20792
diff
changeset
|
1001 lim = BEGV, lim_byte = BEGV_BYTE; |
20924
eda7e44ef9d9
(search_command): Check LIM in valid range
Karl Heuer <kwzh@gnu.org>
parents:
20898
diff
changeset
|
1002 else |
eda7e44ef9d9
(search_command): Check LIM in valid range
Karl Heuer <kwzh@gnu.org>
parents:
20898
diff
changeset
|
1003 lim_byte = CHAR_TO_BYTE (lim); |
603 | 1004 } |
1005 | |
72725
ef0421dfce16
(looking_at_1, string_match_1, search_command):
Richard M. Stallman <rms@gnu.org>
parents:
71987
diff
changeset
|
1006 /* This is so set_image_of_range_1 in regex.c can find the EQV table. */ |
ef0421dfce16
(looking_at_1, string_match_1, search_command):
Richard M. Stallman <rms@gnu.org>
parents:
71987
diff
changeset
|
1007 XCHAR_TABLE (current_buffer->case_canon_table)->extras[2] |
ef0421dfce16
(looking_at_1, string_match_1, search_command):
Richard M. Stallman <rms@gnu.org>
parents:
71987
diff
changeset
|
1008 = current_buffer->case_eqv_table; |
ef0421dfce16
(looking_at_1, string_match_1, search_command):
Richard M. Stallman <rms@gnu.org>
parents:
71987
diff
changeset
|
1009 |
20824
97df0c6e753d
(search_buffer): New args pos_byte and lim_byte.
Richard M. Stallman <rms@gnu.org>
parents:
20792
diff
changeset
|
1010 np = search_buffer (string, PT, PT_BYTE, lim, lim_byte, n, RE, |
603 | 1011 (!NILP (current_buffer->case_fold_search) |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1012 ? current_buffer->case_canon_table |
20875
4fac9830041a
(search_command): Fix call to search_buffer.
Richard M. Stallman <rms@gnu.org>
parents:
20869
diff
changeset
|
1013 : Qnil), |
603 | 1014 (!NILP (current_buffer->case_fold_search) |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1015 ? current_buffer->case_eqv_table |
20875
4fac9830041a
(search_command): Fix call to search_buffer.
Richard M. Stallman <rms@gnu.org>
parents:
20869
diff
changeset
|
1016 : Qnil), |
10020
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
1017 posix); |
603 | 1018 if (np <= 0) |
1019 { | |
1020 if (NILP (noerror)) | |
71987
6dd00de34fff
(compile_pattern_1): Use xsignal1.
Kim F. Storm <storm@cua.dk>
parents:
71841
diff
changeset
|
1021 xsignal1 (Qsearch_failed, string); |
6dd00de34fff
(compile_pattern_1): Use xsignal1.
Kim F. Storm <storm@cua.dk>
parents:
71841
diff
changeset
|
1022 |
603 | 1023 if (!EQ (noerror, Qt)) |
1024 { | |
1025 if (lim < BEGV || lim > ZV) | |
1026 abort (); | |
20824
97df0c6e753d
(search_buffer): New args pos_byte and lim_byte.
Richard M. Stallman <rms@gnu.org>
parents:
20792
diff
changeset
|
1027 SET_PT_BOTH (lim, lim_byte); |
1878
1c26d0049d4f
(search_command): #if 0 previous change.
Richard M. Stallman <rms@gnu.org>
parents:
1877
diff
changeset
|
1028 return Qnil; |
1c26d0049d4f
(search_command): #if 0 previous change.
Richard M. Stallman <rms@gnu.org>
parents:
1877
diff
changeset
|
1029 #if 0 /* This would be clean, but maybe programs depend on |
1c26d0049d4f
(search_command): #if 0 previous change.
Richard M. Stallman <rms@gnu.org>
parents:
1877
diff
changeset
|
1030 a value of nil here. */ |
1877
7786f61ec635
(search_command): When moving to LIM on failure, return LIM.
Richard M. Stallman <rms@gnu.org>
parents:
1684
diff
changeset
|
1031 np = lim; |
1878
1c26d0049d4f
(search_command): #if 0 previous change.
Richard M. Stallman <rms@gnu.org>
parents:
1877
diff
changeset
|
1032 #endif |
603 | 1033 } |
1877
7786f61ec635
(search_command): When moving to LIM on failure, return LIM.
Richard M. Stallman <rms@gnu.org>
parents:
1684
diff
changeset
|
1034 else |
7786f61ec635
(search_command): When moving to LIM on failure, return LIM.
Richard M. Stallman <rms@gnu.org>
parents:
1684
diff
changeset
|
1035 return Qnil; |
603 | 1036 } |
1037 | |
1038 if (np < BEGV || np > ZV) | |
1039 abort (); | |
1040 | |
1041 SET_PT (np); | |
1042 | |
1043 return make_number (np); | |
1044 } | |
1045 | |
20545
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
1046 /* Return 1 if REGEXP it matches just one constant string. */ |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
1047 |
8950
68ad2f08d735
(trivial_regexp_p): New function.
Karl Heuer <kwzh@gnu.org>
parents:
8584
diff
changeset
|
1048 static int |
109126
aec1143e8d85
Convert (most) functions in src to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109100
diff
changeset
|
1049 trivial_regexp_p (Lisp_Object regexp) |
8950
68ad2f08d735
(trivial_regexp_p): New function.
Karl Heuer <kwzh@gnu.org>
parents:
8584
diff
changeset
|
1050 { |
110507
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
1051 EMACS_INT len = SBYTES (regexp); |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
45263
diff
changeset
|
1052 unsigned char *s = SDATA (regexp); |
8950
68ad2f08d735
(trivial_regexp_p): New function.
Karl Heuer <kwzh@gnu.org>
parents:
8584
diff
changeset
|
1053 while (--len >= 0) |
68ad2f08d735
(trivial_regexp_p): New function.
Karl Heuer <kwzh@gnu.org>
parents:
8584
diff
changeset
|
1054 { |
68ad2f08d735
(trivial_regexp_p): New function.
Karl Heuer <kwzh@gnu.org>
parents:
8584
diff
changeset
|
1055 switch (*s++) |
68ad2f08d735
(trivial_regexp_p): New function.
Karl Heuer <kwzh@gnu.org>
parents:
8584
diff
changeset
|
1056 { |
68ad2f08d735
(trivial_regexp_p): New function.
Karl Heuer <kwzh@gnu.org>
parents:
8584
diff
changeset
|
1057 case '.': case '*': case '+': case '?': case '[': case '^': case '$': |
68ad2f08d735
(trivial_regexp_p): New function.
Karl Heuer <kwzh@gnu.org>
parents:
8584
diff
changeset
|
1058 return 0; |
68ad2f08d735
(trivial_regexp_p): New function.
Karl Heuer <kwzh@gnu.org>
parents:
8584
diff
changeset
|
1059 case '\\': |
68ad2f08d735
(trivial_regexp_p): New function.
Karl Heuer <kwzh@gnu.org>
parents:
8584
diff
changeset
|
1060 if (--len < 0) |
68ad2f08d735
(trivial_regexp_p): New function.
Karl Heuer <kwzh@gnu.org>
parents:
8584
diff
changeset
|
1061 return 0; |
68ad2f08d735
(trivial_regexp_p): New function.
Karl Heuer <kwzh@gnu.org>
parents:
8584
diff
changeset
|
1062 switch (*s++) |
68ad2f08d735
(trivial_regexp_p): New function.
Karl Heuer <kwzh@gnu.org>
parents:
8584
diff
changeset
|
1063 { |
68ad2f08d735
(trivial_regexp_p): New function.
Karl Heuer <kwzh@gnu.org>
parents:
8584
diff
changeset
|
1064 case '|': case '(': case ')': case '`': case '\'': case 'b': |
68ad2f08d735
(trivial_regexp_p): New function.
Karl Heuer <kwzh@gnu.org>
parents:
8584
diff
changeset
|
1065 case 'B': case '<': case '>': case 'w': case 'W': case 's': |
55689
f4a937a898f4
(trivial_regexp_p): \_ is no longer a trivial regexp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53719
diff
changeset
|
1066 case 'S': case '=': case '{': case '}': case '_': |
17053
df904355f033
Include category.h and charset.h.
Karl Heuer <kwzh@gnu.org>
parents:
16880
diff
changeset
|
1067 case 'c': case 'C': /* for categoryspec and notcategoryspec */ |
12069
505dc29a68cf
(trivial_regexp_p): = is special after \.
Karl Heuer <kwzh@gnu.org>
parents:
11678
diff
changeset
|
1068 case '1': case '2': case '3': case '4': case '5': |
8950
68ad2f08d735
(trivial_regexp_p): New function.
Karl Heuer <kwzh@gnu.org>
parents:
8584
diff
changeset
|
1069 case '6': case '7': case '8': case '9': |
68ad2f08d735
(trivial_regexp_p): New function.
Karl Heuer <kwzh@gnu.org>
parents:
8584
diff
changeset
|
1070 return 0; |
68ad2f08d735
(trivial_regexp_p): New function.
Karl Heuer <kwzh@gnu.org>
parents:
8584
diff
changeset
|
1071 } |
68ad2f08d735
(trivial_regexp_p): New function.
Karl Heuer <kwzh@gnu.org>
parents:
8584
diff
changeset
|
1072 } |
68ad2f08d735
(trivial_regexp_p): New function.
Karl Heuer <kwzh@gnu.org>
parents:
8584
diff
changeset
|
1073 } |
68ad2f08d735
(trivial_regexp_p): New function.
Karl Heuer <kwzh@gnu.org>
parents:
8584
diff
changeset
|
1074 return 1; |
68ad2f08d735
(trivial_regexp_p): New function.
Karl Heuer <kwzh@gnu.org>
parents:
8584
diff
changeset
|
1075 } |
68ad2f08d735
(trivial_regexp_p): New function.
Karl Heuer <kwzh@gnu.org>
parents:
8584
diff
changeset
|
1076 |
5556
14161cfec24a
(set_search_regs): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
4954
diff
changeset
|
1077 /* Search for the n'th occurrence of STRING in the current buffer, |
603 | 1078 starting at position POS and stopping at position LIM, |
10020
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
1079 treating STRING as a literal string if RE is false or as |
603 | 1080 a regular expression if RE is true. |
1081 | |
1082 If N is positive, searching is forward and LIM must be greater than POS. | |
1083 If N is negative, searching is backward and LIM must be less than POS. | |
1084 | |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1085 Returns -x if x occurrences remain to be found (x > 0), |
603 | 1086 or else the position at the beginning of the Nth occurrence |
10020
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
1087 (if searching backward) or the end (if searching forward). |
603 | 1088 |
10020
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
1089 POSIX is nonzero if we want full backtracking (POSIX style) |
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
1090 for this pattern. 0 means backtrack only enough to get a valid match. */ |
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
1091 |
20898
f69969e35e78
(simple_search): Call set_search_regs.
Richard M. Stallman <rms@gnu.org>
parents:
20875
diff
changeset
|
1092 #define TRANSLATE(out, trt, d) \ |
f69969e35e78
(simple_search): Call set_search_regs.
Richard M. Stallman <rms@gnu.org>
parents:
20875
diff
changeset
|
1093 do \ |
f69969e35e78
(simple_search): Call set_search_regs.
Richard M. Stallman <rms@gnu.org>
parents:
20875
diff
changeset
|
1094 { \ |
f69969e35e78
(simple_search): Call set_search_regs.
Richard M. Stallman <rms@gnu.org>
parents:
20875
diff
changeset
|
1095 if (! NILP (trt)) \ |
f69969e35e78
(simple_search): Call set_search_regs.
Richard M. Stallman <rms@gnu.org>
parents:
20875
diff
changeset
|
1096 { \ |
f69969e35e78
(simple_search): Call set_search_regs.
Richard M. Stallman <rms@gnu.org>
parents:
20875
diff
changeset
|
1097 Lisp_Object temp; \ |
f69969e35e78
(simple_search): Call set_search_regs.
Richard M. Stallman <rms@gnu.org>
parents:
20875
diff
changeset
|
1098 temp = Faref (trt, make_number (d)); \ |
f69969e35e78
(simple_search): Call set_search_regs.
Richard M. Stallman <rms@gnu.org>
parents:
20875
diff
changeset
|
1099 if (INTEGERP (temp)) \ |
f69969e35e78
(simple_search): Call set_search_regs.
Richard M. Stallman <rms@gnu.org>
parents:
20875
diff
changeset
|
1100 out = XINT (temp); \ |
f69969e35e78
(simple_search): Call set_search_regs.
Richard M. Stallman <rms@gnu.org>
parents:
20875
diff
changeset
|
1101 else \ |
f69969e35e78
(simple_search): Call set_search_regs.
Richard M. Stallman <rms@gnu.org>
parents:
20875
diff
changeset
|
1102 out = d; \ |
f69969e35e78
(simple_search): Call set_search_regs.
Richard M. Stallman <rms@gnu.org>
parents:
20875
diff
changeset
|
1103 } \ |
f69969e35e78
(simple_search): Call set_search_regs.
Richard M. Stallman <rms@gnu.org>
parents:
20875
diff
changeset
|
1104 else \ |
f69969e35e78
(simple_search): Call set_search_regs.
Richard M. Stallman <rms@gnu.org>
parents:
20875
diff
changeset
|
1105 out = d; \ |
f69969e35e78
(simple_search): Call set_search_regs.
Richard M. Stallman <rms@gnu.org>
parents:
20875
diff
changeset
|
1106 } \ |
f69969e35e78
(simple_search): Call set_search_regs.
Richard M. Stallman <rms@gnu.org>
parents:
20875
diff
changeset
|
1107 while (0) |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1108 |
81780
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1109 /* Only used in search_buffer, to record the end position of the match |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1110 when searching regexps and SEARCH_REGS should not be changed |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1111 (i.e. Vinhibit_changing_match_data is non-nil). */ |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1112 static struct re_registers search_regs_1; |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1113 |
103001
6b3176775d00
* search.c: Use EMACS_INT for buffer positions. Add prototypes.
Andreas Schwab <schwab@linux-m68k.org>
parents:
102999
diff
changeset
|
1114 static EMACS_INT |
109364
89a16701cde1
Convert old-style definitions
Andreas Schwab <schwab@linux-m68k.org>
parents:
109179
diff
changeset
|
1115 search_buffer (Lisp_Object string, EMACS_INT pos, EMACS_INT pos_byte, |
110507
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
1116 EMACS_INT lim, EMACS_INT lim_byte, EMACS_INT n, |
109364
89a16701cde1
Convert old-style definitions
Andreas Schwab <schwab@linux-m68k.org>
parents:
109179
diff
changeset
|
1117 int RE, Lisp_Object trt, Lisp_Object inverse_trt, int posix) |
603 | 1118 { |
110507
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
1119 EMACS_INT len = SCHARS (string); |
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
1120 EMACS_INT len_byte = SBYTES (string); |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1121 register int i; |
603 | 1122 |
10032
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10020
diff
changeset
|
1123 if (running_asynch_code) |
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10020
diff
changeset
|
1124 save_search_regs (); |
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10020
diff
changeset
|
1125 |
22082
84bcdbc46d71
(search_buffer): Set search regs for all success with an empty string.
Richard M. Stallman <rms@gnu.org>
parents:
21988
diff
changeset
|
1126 /* Searching 0 times means don't move. */ |
603 | 1127 /* Null string is found at starting position. */ |
22082
84bcdbc46d71
(search_buffer): Set search regs for all success with an empty string.
Richard M. Stallman <rms@gnu.org>
parents:
21988
diff
changeset
|
1128 if (len == 0 || n == 0) |
5556
14161cfec24a
(set_search_regs): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
4954
diff
changeset
|
1129 { |
35831
dc8b618615ea
(search_buffer): Call set_search_regs with a byte
Gerd Moellmann <gerd@gnu.org>
parents:
34966
diff
changeset
|
1130 set_search_regs (pos_byte, 0); |
5556
14161cfec24a
(set_search_regs): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
4954
diff
changeset
|
1131 return pos; |
14161cfec24a
(set_search_regs): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
4954
diff
changeset
|
1132 } |
4299
7a2e1d7362c5
(search_buffer): If n is 0, just return POS.
Richard M. Stallman <rms@gnu.org>
parents:
3615
diff
changeset
|
1133 |
58348
623ffd21f0ff
(Vsearch_spaces_regexp):
Richard M. Stallman <rms@gnu.org>
parents:
58330
diff
changeset
|
1134 if (RE && !(trivial_regexp_p (string) && NILP (Vsearch_spaces_regexp))) |
603 | 1135 { |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1136 unsigned char *p1, *p2; |
110507
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
1137 EMACS_INT s1, s2; |
9605
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
1138 struct re_pattern_buffer *bufp; |
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
1139 |
81780
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1140 bufp = compile_pattern (string, |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1141 (NILP (Vinhibit_changing_match_data) |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1142 ? &search_regs : &search_regs_1), |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1143 trt, posix, |
20588
138c95482e6b
(search_buffer): Handle bytes vs chars in non-RE case.
Richard M. Stallman <rms@gnu.org>
parents:
20547
diff
changeset
|
1144 !NILP (current_buffer->enable_multibyte_characters)); |
603 | 1145 |
1146 immediate_quit = 1; /* Quit immediately if user types ^G, | |
1147 because letting this function finish | |
1148 can take too long. */ | |
1149 QUIT; /* Do a pending quit right away, | |
1150 to avoid paradoxical behavior */ | |
1151 /* Get pointers and sizes of the two strings | |
1152 that make up the visible portion of the buffer. */ | |
1153 | |
1154 p1 = BEGV_ADDR; | |
20545
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
1155 s1 = GPT_BYTE - BEGV_BYTE; |
603 | 1156 p2 = GAP_END_ADDR; |
20545
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
1157 s2 = ZV_BYTE - GPT_BYTE; |
603 | 1158 if (s1 < 0) |
1159 { | |
1160 p2 = p1; | |
20545
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
1161 s2 = ZV_BYTE - BEGV_BYTE; |
603 | 1162 s1 = 0; |
1163 } | |
1164 if (s2 < 0) | |
1165 { | |
20545
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
1166 s1 = ZV_BYTE - BEGV_BYTE; |
603 | 1167 s2 = 0; |
1168 } | |
17463
bb9ae80d22e2
(looking_at_1): Set re_match_object.
Richard M. Stallman <rms@gnu.org>
parents:
17284
diff
changeset
|
1169 re_match_object = Qnil; |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48528
diff
changeset
|
1170 |
603 | 1171 while (n < 0) |
1172 { | |
110507
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
1173 EMACS_INT val; |
9605
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
1174 val = re_search_2 (bufp, (char *) p1, s1, (char *) p2, s2, |
20792
f0aa5cc14e8a
(fast_string_match): Give re_search byte size of
Kenichi Handa <handa@m17n.org>
parents:
20706
diff
changeset
|
1175 pos_byte - BEGV_BYTE, lim_byte - pos_byte, |
81780
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1176 (NILP (Vinhibit_changing_match_data) |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1177 ? &search_regs : &search_regs_1), |
2475
052bbdf1b817
(search_buffer): Fix typo in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
1178 /* Don't allow match past current point */ |
20792
f0aa5cc14e8a
(fast_string_match): Give re_search byte size of
Kenichi Handa <handa@m17n.org>
parents:
20706
diff
changeset
|
1179 pos_byte - BEGV_BYTE); |
603 | 1180 if (val == -2) |
8950
68ad2f08d735
(trivial_regexp_p): New function.
Karl Heuer <kwzh@gnu.org>
parents:
8584
diff
changeset
|
1181 { |
68ad2f08d735
(trivial_regexp_p): New function.
Karl Heuer <kwzh@gnu.org>
parents:
8584
diff
changeset
|
1182 matcher_overflow (); |
68ad2f08d735
(trivial_regexp_p): New function.
Karl Heuer <kwzh@gnu.org>
parents:
8584
diff
changeset
|
1183 } |
603 | 1184 if (val >= 0) |
1185 { | |
81780
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1186 if (NILP (Vinhibit_changing_match_data)) |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1187 { |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1188 pos_byte = search_regs.start[0] + BEGV_BYTE; |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1189 for (i = 0; i < search_regs.num_regs; i++) |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1190 if (search_regs.start[i] >= 0) |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1191 { |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1192 search_regs.start[i] |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1193 = BYTE_TO_CHAR (search_regs.start[i] + BEGV_BYTE); |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1194 search_regs.end[i] |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1195 = BYTE_TO_CHAR (search_regs.end[i] + BEGV_BYTE); |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1196 } |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1197 XSETBUFFER (last_thing_searched, current_buffer); |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1198 /* Set pos to the new position. */ |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1199 pos = search_regs.start[0]; |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1200 } |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1201 else |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1202 { |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1203 pos_byte = search_regs_1.start[0] + BEGV_BYTE; |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1204 /* Set pos to the new position. */ |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1205 pos = BYTE_TO_CHAR (search_regs_1.start[0] + BEGV_BYTE); |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1206 } |
603 | 1207 } |
1208 else | |
1209 { | |
1210 immediate_quit = 0; | |
1211 return (n); | |
1212 } | |
1213 n++; | |
1214 } | |
1215 while (n > 0) | |
1216 { | |
110507
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
1217 EMACS_INT val; |
9605
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
1218 val = re_search_2 (bufp, (char *) p1, s1, (char *) p2, s2, |
20792
f0aa5cc14e8a
(fast_string_match): Give re_search byte size of
Kenichi Handa <handa@m17n.org>
parents:
20706
diff
changeset
|
1219 pos_byte - BEGV_BYTE, lim_byte - pos_byte, |
81780
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1220 (NILP (Vinhibit_changing_match_data) |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1221 ? &search_regs : &search_regs_1), |
20792
f0aa5cc14e8a
(fast_string_match): Give re_search byte size of
Kenichi Handa <handa@m17n.org>
parents:
20706
diff
changeset
|
1222 lim_byte - BEGV_BYTE); |
603 | 1223 if (val == -2) |
8950
68ad2f08d735
(trivial_regexp_p): New function.
Karl Heuer <kwzh@gnu.org>
parents:
8584
diff
changeset
|
1224 { |
68ad2f08d735
(trivial_regexp_p): New function.
Karl Heuer <kwzh@gnu.org>
parents:
8584
diff
changeset
|
1225 matcher_overflow (); |
68ad2f08d735
(trivial_regexp_p): New function.
Karl Heuer <kwzh@gnu.org>
parents:
8584
diff
changeset
|
1226 } |
603 | 1227 if (val >= 0) |
1228 { | |
81780
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1229 if (NILP (Vinhibit_changing_match_data)) |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1230 { |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1231 pos_byte = search_regs.end[0] + BEGV_BYTE; |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1232 for (i = 0; i < search_regs.num_regs; i++) |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1233 if (search_regs.start[i] >= 0) |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1234 { |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1235 search_regs.start[i] |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1236 = BYTE_TO_CHAR (search_regs.start[i] + BEGV_BYTE); |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1237 search_regs.end[i] |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1238 = BYTE_TO_CHAR (search_regs.end[i] + BEGV_BYTE); |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1239 } |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1240 XSETBUFFER (last_thing_searched, current_buffer); |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1241 pos = search_regs.end[0]; |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1242 } |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1243 else |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1244 { |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1245 pos_byte = search_regs_1.end[0] + BEGV_BYTE; |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1246 pos = BYTE_TO_CHAR (search_regs_1.end[0] + BEGV_BYTE); |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1247 } |
603 | 1248 } |
1249 else | |
1250 { | |
1251 immediate_quit = 0; | |
1252 return (0 - n); | |
1253 } | |
1254 n--; | |
1255 } | |
1256 immediate_quit = 0; | |
1257 return (pos); | |
1258 } | |
1259 else /* non-RE case */ | |
1260 { | |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1261 unsigned char *raw_pattern, *pat; |
110507
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
1262 EMACS_INT raw_pattern_size; |
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
1263 EMACS_INT raw_pattern_size_byte; |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1264 unsigned char *patbuf; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1265 int multibyte = !NILP (current_buffer->enable_multibyte_characters); |
66751
e1496b6cebc3
(search_buffer): No need to initialize base_pat.
Kim F. Storm <storm@cua.dk>
parents:
66259
diff
changeset
|
1266 unsigned char *base_pat; |
66078
2fe97fc2ee41
(search_buffer): Give up BM search on case-fold-search
Kenichi Handa <handa@m17n.org>
parents:
64770
diff
changeset
|
1267 /* Set to positive if we find a non-ASCII char that need |
2fe97fc2ee41
(search_buffer): Give up BM search on case-fold-search
Kenichi Handa <handa@m17n.org>
parents:
64770
diff
changeset
|
1268 translation. Otherwise set to zero later. */ |
90245
7dd79b4dd8a5
(search_buffer): Give up BM search on case-fold-search
Kenichi Handa <handa@m17n.org>
parents:
90224
diff
changeset
|
1269 int char_base = -1; |
23876
8d2f38338c81
(search_buffer): Don't use Boyer-Moore
Kenichi Handa <handa@m17n.org>
parents:
23790
diff
changeset
|
1270 int boyer_moore_ok = 1; |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1271 |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1272 /* MULTIBYTE says whether the text to be searched is multibyte. |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1273 We must convert PATTERN to match that, or we will not really |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1274 find things right. */ |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1275 |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1276 if (multibyte == STRING_MULTIBYTE (string)) |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1277 { |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
45263
diff
changeset
|
1278 raw_pattern = (unsigned char *) SDATA (string); |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
45263
diff
changeset
|
1279 raw_pattern_size = SCHARS (string); |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
45263
diff
changeset
|
1280 raw_pattern_size_byte = SBYTES (string); |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1281 } |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1282 else if (multibyte) |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1283 { |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
45263
diff
changeset
|
1284 raw_pattern_size = SCHARS (string); |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1285 raw_pattern_size_byte |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
45263
diff
changeset
|
1286 = count_size_as_multibyte (SDATA (string), |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1287 raw_pattern_size); |
21915
8f1159b417c2
(search_buffer): Fix casts when assigning raw_pattern.
Richard M. Stallman <rms@gnu.org>
parents:
21887
diff
changeset
|
1288 raw_pattern = (unsigned char *) alloca (raw_pattern_size_byte + 1); |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
45263
diff
changeset
|
1289 copy_text (SDATA (string), raw_pattern, |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
45263
diff
changeset
|
1290 SCHARS (string), 0, 1); |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1291 } |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1292 else |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1293 { |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1294 /* Converting multibyte to single-byte. |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1295 |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1296 ??? Perhaps this conversion should be done in a special way |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1297 by subtracting nonascii-insert-offset from each non-ASCII char, |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1298 so that only the multibyte chars which really correspond to |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1299 the chosen single-byte character set can possibly match. */ |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
45263
diff
changeset
|
1300 raw_pattern_size = SCHARS (string); |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
45263
diff
changeset
|
1301 raw_pattern_size_byte = SCHARS (string); |
21915
8f1159b417c2
(search_buffer): Fix casts when assigning raw_pattern.
Richard M. Stallman <rms@gnu.org>
parents:
21887
diff
changeset
|
1302 raw_pattern = (unsigned char *) alloca (raw_pattern_size + 1); |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
45263
diff
changeset
|
1303 copy_text (SDATA (string), raw_pattern, |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
45263
diff
changeset
|
1304 SBYTES (string), 1, 0); |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1305 } |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1306 |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1307 /* Copy and optionally translate the pattern. */ |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1308 len = raw_pattern_size; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1309 len_byte = raw_pattern_size_byte; |
89130
e18339404909
(search_buffer): Fix case-fold-search of multibyte
Kenichi Handa <handa@m17n.org>
parents:
89062
diff
changeset
|
1310 patbuf = (unsigned char *) alloca (len * MAX_MULTIBYTE_LENGTH); |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1311 pat = patbuf; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1312 base_pat = raw_pattern; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1313 if (multibyte) |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1314 { |
61189
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1315 /* Fill patbuf by translated characters in STRING while |
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1316 checking if we can use boyer-moore search. If TRT is |
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1317 non-nil, we can use boyer-moore search only if TRT can be |
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1318 represented by the byte array of 256 elements. For that, |
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1319 all non-ASCII case-equivalents of all case-senstive |
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1320 characters in STRING must belong to the same charset and |
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1321 row. */ |
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1322 |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1323 while (--len >= 0) |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1324 { |
61189
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1325 unsigned char str_base[MAX_MULTIBYTE_LENGTH], *str; |
20898
f69969e35e78
(simple_search): Call set_search_regs.
Richard M. Stallman <rms@gnu.org>
parents:
20875
diff
changeset
|
1326 int c, translated, inverse; |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1327 int in_charlen, charlen; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1328 |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1329 /* If we got here and the RE flag is set, it's because we're |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1330 dealing with a regexp known to be trivial, so the backslash |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1331 just quotes the next character. */ |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1332 if (RE && *base_pat == '\\') |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1333 { |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1334 len--; |
61189
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1335 raw_pattern_size--; |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1336 len_byte--; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1337 base_pat++; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1338 } |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1339 |
106185
f2cea199b0c4
* character.h (STRING_CHAR, STRING_CHAR_AND_LENGTH): Remove
Andreas Schwab <schwab@linux-m68k.org>
parents:
105877
diff
changeset
|
1340 c = STRING_CHAR_AND_LENGTH (base_pat, in_charlen); |
23876
8d2f38338c81
(search_buffer): Don't use Boyer-Moore
Kenichi Handa <handa@m17n.org>
parents:
23790
diff
changeset
|
1341 |
61189
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1342 if (NILP (trt)) |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1343 { |
61189
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1344 str = base_pat; |
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1345 charlen = in_charlen; |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1346 } |
61189
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1347 else |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1348 { |
61189
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1349 /* Translate the character. */ |
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1350 TRANSLATE (translated, trt, c); |
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1351 charlen = CHAR_STRING (translated, str_base); |
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1352 str = str_base; |
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1353 |
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1354 /* Check if C has any other case-equivalents. */ |
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1355 TRANSLATE (inverse, inverse_trt, c); |
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1356 /* If so, check if we can use boyer-moore. */ |
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1357 if (c != inverse && boyer_moore_ok) |
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1358 { |
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1359 /* Check if all equivalents belong to the same |
90137
e465b832ab21
(search_buffer): Fix the change for syncing with CVS
Kenichi Handa <handa@m17n.org>
parents:
90136
diff
changeset
|
1360 group of characters. Note that the check of C |
90245
7dd79b4dd8a5
(search_buffer): Give up BM search on case-fold-search
Kenichi Handa <handa@m17n.org>
parents:
90224
diff
changeset
|
1361 itself is done by the last iteration. */ |
7dd79b4dd8a5
(search_buffer): Give up BM search on case-fold-search
Kenichi Handa <handa@m17n.org>
parents:
90224
diff
changeset
|
1362 int this_char_base = -1; |
7dd79b4dd8a5
(search_buffer): Give up BM search on case-fold-search
Kenichi Handa <handa@m17n.org>
parents:
90224
diff
changeset
|
1363 |
7dd79b4dd8a5
(search_buffer): Give up BM search on case-fold-search
Kenichi Handa <handa@m17n.org>
parents:
90224
diff
changeset
|
1364 while (boyer_moore_ok) |
61189
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1365 { |
66078
2fe97fc2ee41
(search_buffer): Give up BM search on case-fold-search
Kenichi Handa <handa@m17n.org>
parents:
64770
diff
changeset
|
1366 if (ASCII_BYTE_P (inverse)) |
61189
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1367 { |
90245
7dd79b4dd8a5
(search_buffer): Give up BM search on case-fold-search
Kenichi Handa <handa@m17n.org>
parents:
90224
diff
changeset
|
1368 if (this_char_base > 0) |
7dd79b4dd8a5
(search_buffer): Give up BM search on case-fold-search
Kenichi Handa <handa@m17n.org>
parents:
90224
diff
changeset
|
1369 boyer_moore_ok = 0; |
7dd79b4dd8a5
(search_buffer): Give up BM search on case-fold-search
Kenichi Handa <handa@m17n.org>
parents:
90224
diff
changeset
|
1370 else |
97759
99656f6b55ce
(search_buffer): Set char_base to zero only at the end.
Andreas Schwab <schwab@suse.de>
parents:
94963
diff
changeset
|
1371 this_char_base = 0; |
66078
2fe97fc2ee41
(search_buffer): Give up BM search on case-fold-search
Kenichi Handa <handa@m17n.org>
parents:
64770
diff
changeset
|
1372 } |
90245
7dd79b4dd8a5
(search_buffer): Give up BM search on case-fold-search
Kenichi Handa <handa@m17n.org>
parents:
90224
diff
changeset
|
1373 else if (CHAR_BYTE8_P (inverse)) |
7dd79b4dd8a5
(search_buffer): Give up BM search on case-fold-search
Kenichi Handa <handa@m17n.org>
parents:
90224
diff
changeset
|
1374 /* Boyer-moore search can't handle a |
7dd79b4dd8a5
(search_buffer): Give up BM search on case-fold-search
Kenichi Handa <handa@m17n.org>
parents:
90224
diff
changeset
|
1375 translation of an eight-bit |
7dd79b4dd8a5
(search_buffer): Give up BM search on case-fold-search
Kenichi Handa <handa@m17n.org>
parents:
90224
diff
changeset
|
1376 character. */ |
7dd79b4dd8a5
(search_buffer): Give up BM search on case-fold-search
Kenichi Handa <handa@m17n.org>
parents:
90224
diff
changeset
|
1377 boyer_moore_ok = 0; |
7dd79b4dd8a5
(search_buffer): Give up BM search on case-fold-search
Kenichi Handa <handa@m17n.org>
parents:
90224
diff
changeset
|
1378 else if (this_char_base < 0) |
66078
2fe97fc2ee41
(search_buffer): Give up BM search on case-fold-search
Kenichi Handa <handa@m17n.org>
parents:
64770
diff
changeset
|
1379 { |
90245
7dd79b4dd8a5
(search_buffer): Give up BM search on case-fold-search
Kenichi Handa <handa@m17n.org>
parents:
90224
diff
changeset
|
1380 this_char_base = inverse & ~0x3F; |
7dd79b4dd8a5
(search_buffer): Give up BM search on case-fold-search
Kenichi Handa <handa@m17n.org>
parents:
90224
diff
changeset
|
1381 if (char_base < 0) |
7dd79b4dd8a5
(search_buffer): Give up BM search on case-fold-search
Kenichi Handa <handa@m17n.org>
parents:
90224
diff
changeset
|
1382 char_base = this_char_base; |
97759
99656f6b55ce
(search_buffer): Set char_base to zero only at the end.
Andreas Schwab <schwab@suse.de>
parents:
94963
diff
changeset
|
1383 else if (this_char_base != char_base) |
90245
7dd79b4dd8a5
(search_buffer): Give up BM search on case-fold-search
Kenichi Handa <handa@m17n.org>
parents:
90224
diff
changeset
|
1384 boyer_moore_ok = 0; |
66078
2fe97fc2ee41
(search_buffer): Give up BM search on case-fold-search
Kenichi Handa <handa@m17n.org>
parents:
64770
diff
changeset
|
1385 } |
90245
7dd79b4dd8a5
(search_buffer): Give up BM search on case-fold-search
Kenichi Handa <handa@m17n.org>
parents:
90224
diff
changeset
|
1386 else if ((inverse & ~0x3F) != this_char_base) |
7dd79b4dd8a5
(search_buffer): Give up BM search on case-fold-search
Kenichi Handa <handa@m17n.org>
parents:
90224
diff
changeset
|
1387 boyer_moore_ok = 0; |
61189
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1388 if (c == inverse) |
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1389 break; |
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1390 TRANSLATE (inverse, inverse_trt, inverse); |
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1391 } |
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1392 } |
20898
f69969e35e78
(simple_search): Call set_search_regs.
Richard M. Stallman <rms@gnu.org>
parents:
20875
diff
changeset
|
1393 } |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1394 |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1395 /* Store this character into the translated pattern. */ |
109165
750db9f3e6d8
Replace bcopy, bzero, bcmp by memcpy, memmove, memset, memcmp
Andreas Schwab <schwab@linux-m68k.org>
parents:
109126
diff
changeset
|
1396 memcpy (pat, str, charlen); |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1397 pat += charlen; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1398 base_pat += in_charlen; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1399 len_byte -= in_charlen; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1400 } |
97759
99656f6b55ce
(search_buffer): Set char_base to zero only at the end.
Andreas Schwab <schwab@suse.de>
parents:
94963
diff
changeset
|
1401 |
99656f6b55ce
(search_buffer): Set char_base to zero only at the end.
Andreas Schwab <schwab@suse.de>
parents:
94963
diff
changeset
|
1402 /* If char_base is still negative we didn't find any translated |
99656f6b55ce
(search_buffer): Set char_base to zero only at the end.
Andreas Schwab <schwab@suse.de>
parents:
94963
diff
changeset
|
1403 non-ASCII characters. */ |
99656f6b55ce
(search_buffer): Set char_base to zero only at the end.
Andreas Schwab <schwab@suse.de>
parents:
94963
diff
changeset
|
1404 if (char_base < 0) |
99656f6b55ce
(search_buffer): Set char_base to zero only at the end.
Andreas Schwab <schwab@suse.de>
parents:
94963
diff
changeset
|
1405 char_base = 0; |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1406 } |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1407 else |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1408 { |
23876
8d2f38338c81
(search_buffer): Don't use Boyer-Moore
Kenichi Handa <handa@m17n.org>
parents:
23790
diff
changeset
|
1409 /* Unibyte buffer. */ |
90137
e465b832ab21
(search_buffer): Fix the change for syncing with CVS
Kenichi Handa <handa@m17n.org>
parents:
90136
diff
changeset
|
1410 char_base = 0; |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1411 while (--len >= 0) |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1412 { |
23876
8d2f38338c81
(search_buffer): Don't use Boyer-Moore
Kenichi Handa <handa@m17n.org>
parents:
23790
diff
changeset
|
1413 int c, translated; |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1414 |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1415 /* If we got here and the RE flag is set, it's because we're |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1416 dealing with a regexp known to be trivial, so the backslash |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1417 just quotes the next character. */ |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1418 if (RE && *base_pat == '\\') |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1419 { |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1420 len--; |
61189
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1421 raw_pattern_size--; |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1422 base_pat++; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1423 } |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1424 c = *base_pat++; |
20898
f69969e35e78
(simple_search): Call set_search_regs.
Richard M. Stallman <rms@gnu.org>
parents:
20875
diff
changeset
|
1425 TRANSLATE (translated, trt, c); |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1426 *pat++ = translated; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1427 } |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1428 } |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1429 |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1430 len_byte = pat - patbuf; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1431 len = raw_pattern_size; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1432 pat = base_pat = patbuf; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1433 |
23876
8d2f38338c81
(search_buffer): Don't use Boyer-Moore
Kenichi Handa <handa@m17n.org>
parents:
23790
diff
changeset
|
1434 if (boyer_moore_ok) |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1435 return boyer_moore (n, pat, len, len_byte, trt, inverse_trt, |
20898
f69969e35e78
(simple_search): Call set_search_regs.
Richard M. Stallman <rms@gnu.org>
parents:
20875
diff
changeset
|
1436 pos, pos_byte, lim, lim_byte, |
90137
e465b832ab21
(search_buffer): Fix the change for syncing with CVS
Kenichi Handa <handa@m17n.org>
parents:
90136
diff
changeset
|
1437 char_base); |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1438 else |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1439 return simple_search (n, pat, len, len_byte, trt, |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1440 pos, pos_byte, lim, lim_byte); |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1441 } |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1442 } |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1443 |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1444 /* Do a simple string search N times for the string PAT, |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1445 whose length is LEN/LEN_BYTE, |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1446 from buffer position POS/POS_BYTE until LIM/LIM_BYTE. |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1447 TRT is the translation table. |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1448 |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1449 Return the character position where the match is found. |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1450 Otherwise, if M matches remained to be found, return -M. |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1451 |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1452 This kind of search works regardless of what is in PAT and |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1453 regardless of what is in TRT. It is used in cases where |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1454 boyer_moore cannot work. */ |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1455 |
103001
6b3176775d00
* search.c: Use EMACS_INT for buffer positions. Add prototypes.
Andreas Schwab <schwab@linux-m68k.org>
parents:
102999
diff
changeset
|
1456 static EMACS_INT |
110507
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
1457 simple_search (EMACS_INT n, unsigned char *pat, |
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
1458 EMACS_INT len, EMACS_INT len_byte, Lisp_Object trt, |
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
1459 EMACS_INT pos, EMACS_INT pos_byte, |
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
1460 EMACS_INT lim, EMACS_INT lim_byte) |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1461 { |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1462 int multibyte = ! NILP (current_buffer->enable_multibyte_characters); |
21117
a88d2c555a06
(simple_search): Don't count a character until it matches!
Richard M. Stallman <rms@gnu.org>
parents:
20965
diff
changeset
|
1463 int forward = n > 0; |
90245
7dd79b4dd8a5
(search_buffer): Give up BM search on case-fold-search
Kenichi Handa <handa@m17n.org>
parents:
90224
diff
changeset
|
1464 /* Number of buffer bytes matched. Note that this may be different |
7dd79b4dd8a5
(search_buffer): Give up BM search on case-fold-search
Kenichi Handa <handa@m17n.org>
parents:
90224
diff
changeset
|
1465 from len_byte in a multibyte buffer. */ |
110507
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
1466 EMACS_INT match_byte; |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1467 |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1468 if (lim > pos && multibyte) |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1469 while (n > 0) |
8950
68ad2f08d735
(trivial_regexp_p): New function.
Karl Heuer <kwzh@gnu.org>
parents:
8584
diff
changeset
|
1470 { |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1471 while (1) |
20671
be91d6130341
(compile_pattern_1): If representation of STRING
Karl Heuer <kwzh@gnu.org>
parents:
20588
diff
changeset
|
1472 { |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1473 /* Try matching at position POS. */ |
103001
6b3176775d00
* search.c: Use EMACS_INT for buffer positions. Add prototypes.
Andreas Schwab <schwab@linux-m68k.org>
parents:
102999
diff
changeset
|
1474 EMACS_INT this_pos = pos; |
6b3176775d00
* search.c: Use EMACS_INT for buffer positions. Add prototypes.
Andreas Schwab <schwab@linux-m68k.org>
parents:
102999
diff
changeset
|
1475 EMACS_INT this_pos_byte = pos_byte; |
110507
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
1476 EMACS_INT this_len = len; |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1477 unsigned char *p = pat; |
90671
140d663891af
(simple_search): Fix sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90667
diff
changeset
|
1478 if (pos + len > lim || pos_byte + len_byte > lim_byte) |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1479 goto stop; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1480 |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1481 while (this_len > 0) |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1482 { |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1483 int charlen, buf_charlen; |
21117
a88d2c555a06
(simple_search): Don't count a character until it matches!
Richard M. Stallman <rms@gnu.org>
parents:
20965
diff
changeset
|
1484 int pat_ch, buf_ch; |
a88d2c555a06
(simple_search): Don't count a character until it matches!
Richard M. Stallman <rms@gnu.org>
parents:
20965
diff
changeset
|
1485 |
106185
f2cea199b0c4
* character.h (STRING_CHAR, STRING_CHAR_AND_LENGTH): Remove
Andreas Schwab <schwab@linux-m68k.org>
parents:
105877
diff
changeset
|
1486 pat_ch = STRING_CHAR_AND_LENGTH (p, charlen); |
21117
a88d2c555a06
(simple_search): Don't count a character until it matches!
Richard M. Stallman <rms@gnu.org>
parents:
20965
diff
changeset
|
1487 buf_ch = STRING_CHAR_AND_LENGTH (BYTE_POS_ADDR (this_pos_byte), |
a88d2c555a06
(simple_search): Don't count a character until it matches!
Richard M. Stallman <rms@gnu.org>
parents:
20965
diff
changeset
|
1488 buf_charlen); |
a88d2c555a06
(simple_search): Don't count a character until it matches!
Richard M. Stallman <rms@gnu.org>
parents:
20965
diff
changeset
|
1489 TRANSLATE (buf_ch, trt, buf_ch); |
a88d2c555a06
(simple_search): Don't count a character until it matches!
Richard M. Stallman <rms@gnu.org>
parents:
20965
diff
changeset
|
1490 |
a88d2c555a06
(simple_search): Don't count a character until it matches!
Richard M. Stallman <rms@gnu.org>
parents:
20965
diff
changeset
|
1491 if (buf_ch != pat_ch) |
a88d2c555a06
(simple_search): Don't count a character until it matches!
Richard M. Stallman <rms@gnu.org>
parents:
20965
diff
changeset
|
1492 break; |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1493 |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1494 this_len--; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1495 p += charlen; |
20671
be91d6130341
(compile_pattern_1): If representation of STRING
Karl Heuer <kwzh@gnu.org>
parents:
20588
diff
changeset
|
1496 |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1497 this_pos_byte += buf_charlen; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1498 this_pos++; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1499 } |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1500 |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1501 if (this_len == 0) |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1502 { |
90245
7dd79b4dd8a5
(search_buffer): Give up BM search on case-fold-search
Kenichi Handa <handa@m17n.org>
parents:
90224
diff
changeset
|
1503 match_byte = this_pos_byte - pos_byte; |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1504 pos += len; |
90245
7dd79b4dd8a5
(search_buffer): Give up BM search on case-fold-search
Kenichi Handa <handa@m17n.org>
parents:
90224
diff
changeset
|
1505 pos_byte += match_byte; |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1506 break; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1507 } |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1508 |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1509 INC_BOTH (pos, pos_byte); |
20671
be91d6130341
(compile_pattern_1): If representation of STRING
Karl Heuer <kwzh@gnu.org>
parents:
20588
diff
changeset
|
1510 } |
be91d6130341
(compile_pattern_1): If representation of STRING
Karl Heuer <kwzh@gnu.org>
parents:
20588
diff
changeset
|
1511 |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1512 n--; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1513 } |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1514 else if (lim > pos) |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1515 while (n > 0) |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1516 { |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1517 while (1) |
8950
68ad2f08d735
(trivial_regexp_p): New function.
Karl Heuer <kwzh@gnu.org>
parents:
8584
diff
changeset
|
1518 { |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1519 /* Try matching at position POS. */ |
103001
6b3176775d00
* search.c: Use EMACS_INT for buffer positions. Add prototypes.
Andreas Schwab <schwab@linux-m68k.org>
parents:
102999
diff
changeset
|
1520 EMACS_INT this_pos = pos; |
110507
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
1521 EMACS_INT this_len = len; |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1522 unsigned char *p = pat; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1523 |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1524 if (pos + len > lim) |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1525 goto stop; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1526 |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1527 while (this_len > 0) |
8950
68ad2f08d735
(trivial_regexp_p): New function.
Karl Heuer <kwzh@gnu.org>
parents:
8584
diff
changeset
|
1528 { |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1529 int pat_ch = *p++; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1530 int buf_ch = FETCH_BYTE (this_pos); |
20898
f69969e35e78
(simple_search): Call set_search_regs.
Richard M. Stallman <rms@gnu.org>
parents:
20875
diff
changeset
|
1531 TRANSLATE (buf_ch, trt, buf_ch); |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1532 |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1533 if (buf_ch != pat_ch) |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1534 break; |
21117
a88d2c555a06
(simple_search): Don't count a character until it matches!
Richard M. Stallman <rms@gnu.org>
parents:
20965
diff
changeset
|
1535 |
a88d2c555a06
(simple_search): Don't count a character until it matches!
Richard M. Stallman <rms@gnu.org>
parents:
20965
diff
changeset
|
1536 this_len--; |
a88d2c555a06
(simple_search): Don't count a character until it matches!
Richard M. Stallman <rms@gnu.org>
parents:
20965
diff
changeset
|
1537 this_pos++; |
8950
68ad2f08d735
(trivial_regexp_p): New function.
Karl Heuer <kwzh@gnu.org>
parents:
8584
diff
changeset
|
1538 } |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1539 |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1540 if (this_len == 0) |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1541 { |
90245
7dd79b4dd8a5
(search_buffer): Give up BM search on case-fold-search
Kenichi Handa <handa@m17n.org>
parents:
90224
diff
changeset
|
1542 match_byte = len; |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1543 pos += len; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1544 break; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1545 } |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1546 |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1547 pos++; |
8950
68ad2f08d735
(trivial_regexp_p): New function.
Karl Heuer <kwzh@gnu.org>
parents:
8584
diff
changeset
|
1548 } |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1549 |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1550 n--; |
8950
68ad2f08d735
(trivial_regexp_p): New function.
Karl Heuer <kwzh@gnu.org>
parents:
8584
diff
changeset
|
1551 } |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1552 /* Backwards search. */ |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1553 else if (lim < pos && multibyte) |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1554 while (n < 0) |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1555 { |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1556 while (1) |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1557 { |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1558 /* Try matching at position POS. */ |
106193
234022ddfcd1
(simple_search): Avoid CHAR_TO_BYTE in inner loop when
Andreas Schwab <schwab@linux-m68k.org>
parents:
106185
diff
changeset
|
1559 EMACS_INT this_pos = pos; |
234022ddfcd1
(simple_search): Avoid CHAR_TO_BYTE in inner loop when
Andreas Schwab <schwab@linux-m68k.org>
parents:
106185
diff
changeset
|
1560 EMACS_INT this_pos_byte = pos_byte; |
110507
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
1561 EMACS_INT this_len = len; |
106285
4248d7c5bed0
serach.c (simple_search): Remove warning by making *p const.
Jan Djärv <jan.h.d@swipnet.se>
parents:
106193
diff
changeset
|
1562 const unsigned char *p = pat + len_byte; |
106193
234022ddfcd1
(simple_search): Avoid CHAR_TO_BYTE in inner loop when
Andreas Schwab <schwab@linux-m68k.org>
parents:
106185
diff
changeset
|
1563 |
234022ddfcd1
(simple_search): Avoid CHAR_TO_BYTE in inner loop when
Andreas Schwab <schwab@linux-m68k.org>
parents:
106185
diff
changeset
|
1564 if (this_pos - len < lim || (pos_byte - len_byte) < lim_byte) |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1565 goto stop; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1566 |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1567 while (this_len > 0) |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1568 { |
106193
234022ddfcd1
(simple_search): Avoid CHAR_TO_BYTE in inner loop when
Andreas Schwab <schwab@linux-m68k.org>
parents:
106185
diff
changeset
|
1569 int charlen; |
21117
a88d2c555a06
(simple_search): Don't count a character until it matches!
Richard M. Stallman <rms@gnu.org>
parents:
20965
diff
changeset
|
1570 int pat_ch, buf_ch; |
a88d2c555a06
(simple_search): Don't count a character until it matches!
Richard M. Stallman <rms@gnu.org>
parents:
20965
diff
changeset
|
1571 |
106193
234022ddfcd1
(simple_search): Avoid CHAR_TO_BYTE in inner loop when
Andreas Schwab <schwab@linux-m68k.org>
parents:
106185
diff
changeset
|
1572 DEC_BOTH (this_pos, this_pos_byte); |
234022ddfcd1
(simple_search): Avoid CHAR_TO_BYTE in inner loop when
Andreas Schwab <schwab@linux-m68k.org>
parents:
106185
diff
changeset
|
1573 PREV_CHAR_BOUNDARY (p, pat); |
234022ddfcd1
(simple_search): Avoid CHAR_TO_BYTE in inner loop when
Andreas Schwab <schwab@linux-m68k.org>
parents:
106185
diff
changeset
|
1574 pat_ch = STRING_CHAR (p); |
234022ddfcd1
(simple_search): Avoid CHAR_TO_BYTE in inner loop when
Andreas Schwab <schwab@linux-m68k.org>
parents:
106185
diff
changeset
|
1575 buf_ch = STRING_CHAR (BYTE_POS_ADDR (this_pos_byte)); |
21117
a88d2c555a06
(simple_search): Don't count a character until it matches!
Richard M. Stallman <rms@gnu.org>
parents:
20965
diff
changeset
|
1576 TRANSLATE (buf_ch, trt, buf_ch); |
a88d2c555a06
(simple_search): Don't count a character until it matches!
Richard M. Stallman <rms@gnu.org>
parents:
20965
diff
changeset
|
1577 |
a88d2c555a06
(simple_search): Don't count a character until it matches!
Richard M. Stallman <rms@gnu.org>
parents:
20965
diff
changeset
|
1578 if (buf_ch != pat_ch) |
a88d2c555a06
(simple_search): Don't count a character until it matches!
Richard M. Stallman <rms@gnu.org>
parents:
20965
diff
changeset
|
1579 break; |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1580 |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1581 this_len--; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1582 } |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1583 |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1584 if (this_len == 0) |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1585 { |
106193
234022ddfcd1
(simple_search): Avoid CHAR_TO_BYTE in inner loop when
Andreas Schwab <schwab@linux-m68k.org>
parents:
106185
diff
changeset
|
1586 match_byte = pos_byte - this_pos_byte; |
234022ddfcd1
(simple_search): Avoid CHAR_TO_BYTE in inner loop when
Andreas Schwab <schwab@linux-m68k.org>
parents:
106185
diff
changeset
|
1587 pos = this_pos; |
234022ddfcd1
(simple_search): Avoid CHAR_TO_BYTE in inner loop when
Andreas Schwab <schwab@linux-m68k.org>
parents:
106185
diff
changeset
|
1588 pos_byte = this_pos_byte; |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1589 break; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1590 } |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1591 |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1592 DEC_BOTH (pos, pos_byte); |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1593 } |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1594 |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1595 n++; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1596 } |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1597 else if (lim < pos) |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1598 while (n < 0) |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1599 { |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1600 while (1) |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1601 { |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1602 /* Try matching at position POS. */ |
103001
6b3176775d00
* search.c: Use EMACS_INT for buffer positions. Add prototypes.
Andreas Schwab <schwab@linux-m68k.org>
parents:
102999
diff
changeset
|
1603 EMACS_INT this_pos = pos - len; |
110507
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
1604 EMACS_INT this_len = len; |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1605 unsigned char *p = pat; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1606 |
90671
140d663891af
(simple_search): Fix sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90667
diff
changeset
|
1607 if (this_pos < lim) |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1608 goto stop; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1609 |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1610 while (this_len > 0) |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1611 { |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1612 int pat_ch = *p++; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1613 int buf_ch = FETCH_BYTE (this_pos); |
20898
f69969e35e78
(simple_search): Call set_search_regs.
Richard M. Stallman <rms@gnu.org>
parents:
20875
diff
changeset
|
1614 TRANSLATE (buf_ch, trt, buf_ch); |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1615 |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1616 if (buf_ch != pat_ch) |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1617 break; |
21117
a88d2c555a06
(simple_search): Don't count a character until it matches!
Richard M. Stallman <rms@gnu.org>
parents:
20965
diff
changeset
|
1618 this_len--; |
a88d2c555a06
(simple_search): Don't count a character until it matches!
Richard M. Stallman <rms@gnu.org>
parents:
20965
diff
changeset
|
1619 this_pos++; |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1620 } |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1621 |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1622 if (this_len == 0) |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1623 { |
90245
7dd79b4dd8a5
(search_buffer): Give up BM search on case-fold-search
Kenichi Handa <handa@m17n.org>
parents:
90224
diff
changeset
|
1624 match_byte = len; |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1625 pos -= len; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1626 break; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1627 } |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1628 |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1629 pos--; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1630 } |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1631 |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1632 n++; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1633 } |
603 | 1634 |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1635 stop: |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1636 if (n == 0) |
20898
f69969e35e78
(simple_search): Call set_search_regs.
Richard M. Stallman <rms@gnu.org>
parents:
20875
diff
changeset
|
1637 { |
21117
a88d2c555a06
(simple_search): Don't count a character until it matches!
Richard M. Stallman <rms@gnu.org>
parents:
20965
diff
changeset
|
1638 if (forward) |
90245
7dd79b4dd8a5
(search_buffer): Give up BM search on case-fold-search
Kenichi Handa <handa@m17n.org>
parents:
90224
diff
changeset
|
1639 set_search_regs ((multibyte ? pos_byte : pos) - match_byte, match_byte); |
21117
a88d2c555a06
(simple_search): Don't count a character until it matches!
Richard M. Stallman <rms@gnu.org>
parents:
20965
diff
changeset
|
1640 else |
90245
7dd79b4dd8a5
(search_buffer): Give up BM search on case-fold-search
Kenichi Handa <handa@m17n.org>
parents:
90224
diff
changeset
|
1641 set_search_regs (multibyte ? pos_byte : pos, match_byte); |
20898
f69969e35e78
(simple_search): Call set_search_regs.
Richard M. Stallman <rms@gnu.org>
parents:
20875
diff
changeset
|
1642 |
f69969e35e78
(simple_search): Call set_search_regs.
Richard M. Stallman <rms@gnu.org>
parents:
20875
diff
changeset
|
1643 return pos; |
f69969e35e78
(simple_search): Call set_search_regs.
Richard M. Stallman <rms@gnu.org>
parents:
20875
diff
changeset
|
1644 } |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1645 else if (n > 0) |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1646 return -n; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1647 else |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1648 return n; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1649 } |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1650 |
61189
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1651 /* Do Boyer-Moore search N times for the string BASE_PAT, |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1652 whose length is LEN/LEN_BYTE, |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1653 from buffer position POS/POS_BYTE until LIM/LIM_BYTE. |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1654 DIRECTION says which direction we search in. |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1655 TRT and INVERSE_TRT are translation tables. |
61189
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1656 Characters in PAT are already translated by TRT. |
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1657 |
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1658 This kind of search works if all the characters in BASE_PAT that |
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1659 have nontrivial translation are the same aside from the last byte. |
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1660 This makes it possible to translate just the last byte of a |
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1661 character, and do so after just a simple test of the context. |
91005 | 1662 CHAR_BASE is nonzero if there is such a non-ASCII character. |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1663 |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1664 If that criterion is not satisfied, do not call this function. */ |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1665 |
103001
6b3176775d00
* search.c: Use EMACS_INT for buffer positions. Add prototypes.
Andreas Schwab <schwab@linux-m68k.org>
parents:
102999
diff
changeset
|
1666 static EMACS_INT |
110507
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
1667 boyer_moore (EMACS_INT n, unsigned char *base_pat, |
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
1668 EMACS_INT len, EMACS_INT len_byte, |
109364
89a16701cde1
Convert old-style definitions
Andreas Schwab <schwab@linux-m68k.org>
parents:
109179
diff
changeset
|
1669 Lisp_Object trt, Lisp_Object inverse_trt, |
89a16701cde1
Convert old-style definitions
Andreas Schwab <schwab@linux-m68k.org>
parents:
109179
diff
changeset
|
1670 EMACS_INT pos, EMACS_INT pos_byte, |
89a16701cde1
Convert old-style definitions
Andreas Schwab <schwab@linux-m68k.org>
parents:
109179
diff
changeset
|
1671 EMACS_INT lim, EMACS_INT lim_byte, int char_base) |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1672 { |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1673 int direction = ((n > 0) ? 1 : -1); |
110507
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
1674 register EMACS_INT dirlen; |
103001
6b3176775d00
* search.c: Use EMACS_INT for buffer positions. Add prototypes.
Andreas Schwab <schwab@linux-m68k.org>
parents:
102999
diff
changeset
|
1675 EMACS_INT limit; |
6b3176775d00
* search.c: Use EMACS_INT for buffer positions. Add prototypes.
Andreas Schwab <schwab@linux-m68k.org>
parents:
102999
diff
changeset
|
1676 int stride_for_teases = 0; |
102999
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1677 int BM_tab[0400]; |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48528
diff
changeset
|
1678 register unsigned char *cursor, *p_limit; |
110507
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
1679 register EMACS_INT i; |
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
1680 register int j; |
21945
bda081af77e7
(boyer_moore): Check more reliably for ptr[1] being
Richard M. Stallman <rms@gnu.org>
parents:
21915
diff
changeset
|
1681 unsigned char *pat, *pat_end; |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1682 int multibyte = ! NILP (current_buffer->enable_multibyte_characters); |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1683 |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1684 unsigned char simple_translate[0400]; |
61189
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1685 /* These are set to the preceding bytes of a byte to be translated |
90245
7dd79b4dd8a5
(search_buffer): Give up BM search on case-fold-search
Kenichi Handa <handa@m17n.org>
parents:
90224
diff
changeset
|
1686 if char_base is nonzero. As the maximum byte length of a |
90137
e465b832ab21
(search_buffer): Fix the change for syncing with CVS
Kenichi Handa <handa@m17n.org>
parents:
90136
diff
changeset
|
1687 multibyte character is 5, we have to check at most four previous |
61189
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1688 bytes. */ |
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1689 int translate_prev_byte1 = 0; |
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1690 int translate_prev_byte2 = 0; |
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1691 int translate_prev_byte3 = 0; |
90137
e465b832ab21
(search_buffer): Fix the change for syncing with CVS
Kenichi Handa <handa@m17n.org>
parents:
90136
diff
changeset
|
1692 int translate_prev_byte4 = 0; |
603 | 1693 |
102999
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1694 /* The general approach is that we are going to maintain that we know |
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1695 the first (closest to the present position, in whatever direction |
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1696 we're searching) character that could possibly be the last |
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1697 (furthest from present position) character of a valid match. We |
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1698 advance the state of our knowledge by looking at that character |
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1699 and seeing whether it indeed matches the last character of the |
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1700 pattern. If it does, we take a closer look. If it does not, we |
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1701 move our pointer (to putative last characters) as far as is |
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1702 logically possible. This amount of movement, which I call a |
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1703 stride, will be the length of the pattern if the actual character |
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1704 appears nowhere in the pattern, otherwise it will be the distance |
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1705 from the last occurrence of that character to the end of the |
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1706 pattern. If the amount is zero we have a possible match. */ |
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1707 |
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1708 /* Here we make a "mickey mouse" BM table. The stride of the search |
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1709 is determined only by the last character of the putative match. |
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1710 If that character does not match, we will stride the proper |
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1711 distance to propose a match that superimposes it on the last |
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1712 instance of a character that matches it (per trt), or misses |
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1713 it entirely if there is none. */ |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1714 |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1715 dirlen = len_byte * direction; |
21945
bda081af77e7
(boyer_moore): Check more reliably for ptr[1] being
Richard M. Stallman <rms@gnu.org>
parents:
21915
diff
changeset
|
1716 |
bda081af77e7
(boyer_moore): Check more reliably for ptr[1] being
Richard M. Stallman <rms@gnu.org>
parents:
21915
diff
changeset
|
1717 /* Record position after the end of the pattern. */ |
bda081af77e7
(boyer_moore): Check more reliably for ptr[1] being
Richard M. Stallman <rms@gnu.org>
parents:
21915
diff
changeset
|
1718 pat_end = base_pat + len_byte; |
bda081af77e7
(boyer_moore): Check more reliably for ptr[1] being
Richard M. Stallman <rms@gnu.org>
parents:
21915
diff
changeset
|
1719 /* BASE_PAT points to a character that we start scanning from. |
bda081af77e7
(boyer_moore): Check more reliably for ptr[1] being
Richard M. Stallman <rms@gnu.org>
parents:
21915
diff
changeset
|
1720 It is the first character in a forward search, |
bda081af77e7
(boyer_moore): Check more reliably for ptr[1] being
Richard M. Stallman <rms@gnu.org>
parents:
21915
diff
changeset
|
1721 the last character in a backward search. */ |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1722 if (direction < 0) |
21945
bda081af77e7
(boyer_moore): Check more reliably for ptr[1] being
Richard M. Stallman <rms@gnu.org>
parents:
21915
diff
changeset
|
1723 base_pat = pat_end - 1; |
bda081af77e7
(boyer_moore): Check more reliably for ptr[1] being
Richard M. Stallman <rms@gnu.org>
parents:
21915
diff
changeset
|
1724 |
102999
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1725 /* A character that does not appear in the pattern induces a |
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1726 stride equal to the pattern length. */ |
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1727 for (i = 0; i < 0400; i++) |
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1728 BM_tab[i] = dirlen; |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1729 |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1730 /* We use this for translation, instead of TRT itself. |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1731 We fill this in to handle the characters that actually |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1732 occur in the pattern. Others don't matter anyway! */ |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1733 for (i = 0; i < 0400; i++) |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1734 simple_translate[i] = i; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1735 |
90137
e465b832ab21
(search_buffer): Fix the change for syncing with CVS
Kenichi Handa <handa@m17n.org>
parents:
90136
diff
changeset
|
1736 if (char_base) |
61189
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1737 { |
90137
e465b832ab21
(search_buffer): Fix the change for syncing with CVS
Kenichi Handa <handa@m17n.org>
parents:
90136
diff
changeset
|
1738 /* Setup translate_prev_byte1/2/3/4 from CHAR_BASE. Only a |
61189
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1739 byte following them are the target of translation. */ |
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1740 unsigned char str[MAX_MULTIBYTE_LENGTH]; |
90137
e465b832ab21
(search_buffer): Fix the change for syncing with CVS
Kenichi Handa <handa@m17n.org>
parents:
90136
diff
changeset
|
1741 int len = CHAR_STRING (char_base, str); |
61189
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1742 |
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1743 translate_prev_byte1 = str[len - 2]; |
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1744 if (len > 2) |
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1745 { |
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1746 translate_prev_byte2 = str[len - 3]; |
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1747 if (len > 3) |
90137
e465b832ab21
(search_buffer): Fix the change for syncing with CVS
Kenichi Handa <handa@m17n.org>
parents:
90136
diff
changeset
|
1748 { |
e465b832ab21
(search_buffer): Fix the change for syncing with CVS
Kenichi Handa <handa@m17n.org>
parents:
90136
diff
changeset
|
1749 translate_prev_byte3 = str[len - 4]; |
e465b832ab21
(search_buffer): Fix the change for syncing with CVS
Kenichi Handa <handa@m17n.org>
parents:
90136
diff
changeset
|
1750 if (len > 4) |
e465b832ab21
(search_buffer): Fix the change for syncing with CVS
Kenichi Handa <handa@m17n.org>
parents:
90136
diff
changeset
|
1751 translate_prev_byte4 = str[len - 5]; |
e465b832ab21
(search_buffer): Fix the change for syncing with CVS
Kenichi Handa <handa@m17n.org>
parents:
90136
diff
changeset
|
1752 } |
61189
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1753 } |
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1754 } |
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1755 |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1756 i = 0; |
102999
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1757 while (i != dirlen) |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1758 { |
21945
bda081af77e7
(boyer_moore): Check more reliably for ptr[1] being
Richard M. Stallman <rms@gnu.org>
parents:
21915
diff
changeset
|
1759 unsigned char *ptr = base_pat + i; |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1760 i += direction; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1761 if (! NILP (trt)) |
603 | 1762 { |
61682
0015a00ccb5a
(boyer_moore): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
61189
diff
changeset
|
1763 /* If the byte currently looking at is the last of a |
0015a00ccb5a
(boyer_moore): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
61189
diff
changeset
|
1764 character to check case-equivalents, set CH to that |
0015a00ccb5a
(boyer_moore): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
61189
diff
changeset
|
1765 character. An ASCII character and a non-ASCII character |
90245
7dd79b4dd8a5
(search_buffer): Give up BM search on case-fold-search
Kenichi Handa <handa@m17n.org>
parents:
90224
diff
changeset
|
1766 matching with CHAR_BASE are to be checked. */ |
61189
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1767 int ch = -1; |
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1768 |
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1769 if (ASCII_BYTE_P (*ptr) || ! multibyte) |
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1770 ch = *ptr; |
90245
7dd79b4dd8a5
(search_buffer): Give up BM search on case-fold-search
Kenichi Handa <handa@m17n.org>
parents:
90224
diff
changeset
|
1771 else if (char_base |
66259
d0daa61f9e6f
(boyer_moore): Surround the '||' part of expression in
Kenichi Handa <handa@m17n.org>
parents:
66200
diff
changeset
|
1772 && ((pat_end - ptr) == 1 || CHAR_HEAD_P (ptr[1]))) |
603 | 1773 { |
61682
0015a00ccb5a
(boyer_moore): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
61189
diff
changeset
|
1774 unsigned char *charstart = ptr - 1; |
0015a00ccb5a
(boyer_moore): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
61189
diff
changeset
|
1775 |
0015a00ccb5a
(boyer_moore): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
61189
diff
changeset
|
1776 while (! (CHAR_HEAD_P (*charstart))) |
0015a00ccb5a
(boyer_moore): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
61189
diff
changeset
|
1777 charstart--; |
106185
f2cea199b0c4
* character.h (STRING_CHAR, STRING_CHAR_AND_LENGTH): Remove
Andreas Schwab <schwab@linux-m68k.org>
parents:
105877
diff
changeset
|
1778 ch = STRING_CHAR (charstart); |
90137
e465b832ab21
(search_buffer): Fix the change for syncing with CVS
Kenichi Handa <handa@m17n.org>
parents:
90136
diff
changeset
|
1779 if (char_base != (ch & ~0x3F)) |
61189
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1780 ch = -1; |
603 | 1781 } |
61189
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1782 |
91762
5a41bb37f0ee
(boyer_moore): Fix incorrect synching of the trunk and
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
1783 if (ch >= 0200) |
90245
7dd79b4dd8a5
(search_buffer): Give up BM search on case-fold-search
Kenichi Handa <handa@m17n.org>
parents:
90224
diff
changeset
|
1784 j = (ch & 0x3F) | 0200; |
61682
0015a00ccb5a
(boyer_moore): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
61189
diff
changeset
|
1785 else |
0015a00ccb5a
(boyer_moore): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
61189
diff
changeset
|
1786 j = *ptr; |
0015a00ccb5a
(boyer_moore): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
61189
diff
changeset
|
1787 |
102999
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1788 if (i == dirlen) |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1789 stride_for_teases = BM_tab[j]; |
21117
a88d2c555a06
(simple_search): Don't count a character until it matches!
Richard M. Stallman <rms@gnu.org>
parents:
20965
diff
changeset
|
1790 |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1791 BM_tab[j] = dirlen - i; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1792 /* A translation table is accompanied by its inverse -- see */ |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48528
diff
changeset
|
1793 /* comment following downcase_table for details */ |
61189
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1794 if (ch >= 0) |
21117
a88d2c555a06
(simple_search): Don't count a character until it matches!
Richard M. Stallman <rms@gnu.org>
parents:
20965
diff
changeset
|
1795 { |
a88d2c555a06
(simple_search): Don't count a character until it matches!
Richard M. Stallman <rms@gnu.org>
parents:
20965
diff
changeset
|
1796 int starting_ch = ch; |
61682
0015a00ccb5a
(boyer_moore): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
61189
diff
changeset
|
1797 int starting_j = j; |
0015a00ccb5a
(boyer_moore): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
61189
diff
changeset
|
1798 |
21117
a88d2c555a06
(simple_search): Don't count a character until it matches!
Richard M. Stallman <rms@gnu.org>
parents:
20965
diff
changeset
|
1799 while (1) |
a88d2c555a06
(simple_search): Don't count a character until it matches!
Richard M. Stallman <rms@gnu.org>
parents:
20965
diff
changeset
|
1800 { |
a88d2c555a06
(simple_search): Don't count a character until it matches!
Richard M. Stallman <rms@gnu.org>
parents:
20965
diff
changeset
|
1801 TRANSLATE (ch, inverse_trt, ch); |
91762
5a41bb37f0ee
(boyer_moore): Fix incorrect synching of the trunk and
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
1802 if (ch >= 0200) |
90245
7dd79b4dd8a5
(search_buffer): Give up BM search on case-fold-search
Kenichi Handa <handa@m17n.org>
parents:
90224
diff
changeset
|
1803 j = (ch & 0x3F) | 0200; |
21117
a88d2c555a06
(simple_search): Don't count a character until it matches!
Richard M. Stallman <rms@gnu.org>
parents:
20965
diff
changeset
|
1804 else |
90137
e465b832ab21
(search_buffer): Fix the change for syncing with CVS
Kenichi Handa <handa@m17n.org>
parents:
90136
diff
changeset
|
1805 j = ch; |
21117
a88d2c555a06
(simple_search): Don't count a character until it matches!
Richard M. Stallman <rms@gnu.org>
parents:
20965
diff
changeset
|
1806 |
a88d2c555a06
(simple_search): Don't count a character until it matches!
Richard M. Stallman <rms@gnu.org>
parents:
20965
diff
changeset
|
1807 /* For all the characters that map into CH, |
a88d2c555a06
(simple_search): Don't count a character until it matches!
Richard M. Stallman <rms@gnu.org>
parents:
20965
diff
changeset
|
1808 set up simple_translate to map the last byte |
a88d2c555a06
(simple_search): Don't count a character until it matches!
Richard M. Stallman <rms@gnu.org>
parents:
20965
diff
changeset
|
1809 into STARTING_J. */ |
a88d2c555a06
(simple_search): Don't count a character until it matches!
Richard M. Stallman <rms@gnu.org>
parents:
20965
diff
changeset
|
1810 simple_translate[j] = starting_j; |
a88d2c555a06
(simple_search): Don't count a character until it matches!
Richard M. Stallman <rms@gnu.org>
parents:
20965
diff
changeset
|
1811 if (ch == starting_ch) |
a88d2c555a06
(simple_search): Don't count a character until it matches!
Richard M. Stallman <rms@gnu.org>
parents:
20965
diff
changeset
|
1812 break; |
a88d2c555a06
(simple_search): Don't count a character until it matches!
Richard M. Stallman <rms@gnu.org>
parents:
20965
diff
changeset
|
1813 BM_tab[j] = dirlen - i; |
a88d2c555a06
(simple_search): Don't count a character until it matches!
Richard M. Stallman <rms@gnu.org>
parents:
20965
diff
changeset
|
1814 } |
a88d2c555a06
(simple_search): Don't count a character until it matches!
Richard M. Stallman <rms@gnu.org>
parents:
20965
diff
changeset
|
1815 } |
603 | 1816 } |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1817 else |
603 | 1818 { |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1819 j = *ptr; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1820 |
102999
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1821 if (i == dirlen) |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1822 stride_for_teases = BM_tab[j]; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1823 BM_tab[j] = dirlen - i; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1824 } |
102999
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1825 /* stride_for_teases tells how much to stride if we get a |
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1826 match on the far character but are subsequently |
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1827 disappointed, by recording what the stride would have been |
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1828 for that character if the last character had been |
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1829 different. */ |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1830 } |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1831 pos_byte += dirlen - ((direction > 0) ? direction : 0); |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1832 /* loop invariant - POS_BYTE points at where last char (first |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1833 char if reverse) of pattern would align in a possible match. */ |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1834 while (n != 0) |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1835 { |
103001
6b3176775d00
* search.c: Use EMACS_INT for buffer positions. Add prototypes.
Andreas Schwab <schwab@linux-m68k.org>
parents:
102999
diff
changeset
|
1836 EMACS_INT tail_end; |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1837 unsigned char *tail_end_ptr; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1838 |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1839 /* It's been reported that some (broken) compiler thinks that |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1840 Boolean expressions in an arithmetic context are unsigned. |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1841 Using an explicit ?1:0 prevents this. */ |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1842 if ((lim_byte - pos_byte - ((direction > 0) ? 1 : 0)) * direction |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1843 < 0) |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1844 return (n * (0 - direction)); |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1845 /* First we do the part we can by pointers (maybe nothing) */ |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1846 QUIT; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1847 pat = base_pat; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1848 limit = pos_byte - dirlen + direction; |
21457
8c6ea32aadfa
(min, max): Make these macros, not functions.
Karl Heuer <kwzh@gnu.org>
parents:
21248
diff
changeset
|
1849 if (direction > 0) |
8c6ea32aadfa
(min, max): Make these macros, not functions.
Karl Heuer <kwzh@gnu.org>
parents:
21248
diff
changeset
|
1850 { |
8c6ea32aadfa
(min, max): Make these macros, not functions.
Karl Heuer <kwzh@gnu.org>
parents:
21248
diff
changeset
|
1851 limit = BUFFER_CEILING_OF (limit); |
8c6ea32aadfa
(min, max): Make these macros, not functions.
Karl Heuer <kwzh@gnu.org>
parents:
21248
diff
changeset
|
1852 /* LIMIT is now the last (not beyond-last!) value POS_BYTE |
8c6ea32aadfa
(min, max): Make these macros, not functions.
Karl Heuer <kwzh@gnu.org>
parents:
21248
diff
changeset
|
1853 can take on without hitting edge of buffer or the gap. */ |
8c6ea32aadfa
(min, max): Make these macros, not functions.
Karl Heuer <kwzh@gnu.org>
parents:
21248
diff
changeset
|
1854 limit = min (limit, pos_byte + 20000); |
8c6ea32aadfa
(min, max): Make these macros, not functions.
Karl Heuer <kwzh@gnu.org>
parents:
21248
diff
changeset
|
1855 limit = min (limit, lim_byte - 1); |
8c6ea32aadfa
(min, max): Make these macros, not functions.
Karl Heuer <kwzh@gnu.org>
parents:
21248
diff
changeset
|
1856 } |
8c6ea32aadfa
(min, max): Make these macros, not functions.
Karl Heuer <kwzh@gnu.org>
parents:
21248
diff
changeset
|
1857 else |
8c6ea32aadfa
(min, max): Make these macros, not functions.
Karl Heuer <kwzh@gnu.org>
parents:
21248
diff
changeset
|
1858 { |
8c6ea32aadfa
(min, max): Make these macros, not functions.
Karl Heuer <kwzh@gnu.org>
parents:
21248
diff
changeset
|
1859 limit = BUFFER_FLOOR_OF (limit); |
8c6ea32aadfa
(min, max): Make these macros, not functions.
Karl Heuer <kwzh@gnu.org>
parents:
21248
diff
changeset
|
1860 /* LIMIT is now the last (not beyond-last!) value POS_BYTE |
8c6ea32aadfa
(min, max): Make these macros, not functions.
Karl Heuer <kwzh@gnu.org>
parents:
21248
diff
changeset
|
1861 can take on without hitting edge of buffer or the gap. */ |
8c6ea32aadfa
(min, max): Make these macros, not functions.
Karl Heuer <kwzh@gnu.org>
parents:
21248
diff
changeset
|
1862 limit = max (limit, pos_byte - 20000); |
8c6ea32aadfa
(min, max): Make these macros, not functions.
Karl Heuer <kwzh@gnu.org>
parents:
21248
diff
changeset
|
1863 limit = max (limit, lim_byte); |
8c6ea32aadfa
(min, max): Make these macros, not functions.
Karl Heuer <kwzh@gnu.org>
parents:
21248
diff
changeset
|
1864 } |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1865 tail_end = BUFFER_CEILING_OF (pos_byte) + 1; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1866 tail_end_ptr = BYTE_POS_ADDR (tail_end); |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1867 |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1868 if ((limit - pos_byte) * direction > 20) |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1869 { |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1870 unsigned char *p2; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1871 |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1872 p_limit = BYTE_POS_ADDR (limit); |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1873 p2 = (cursor = BYTE_POS_ADDR (pos_byte)); |
102999
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1874 /* In this loop, pos + cursor - p2 is the surrogate for pos. */ |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1875 while (1) /* use one cursor setting as long as i can */ |
603 | 1876 { |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1877 if (direction > 0) /* worth duplicating */ |
603 | 1878 { |
102999
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1879 while (cursor <= p_limit) |
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1880 { |
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1881 if (BM_tab[*cursor] == 0) |
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1882 goto hit; |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1883 cursor += BM_tab[*cursor]; |
102999
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1884 } |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1885 } |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1886 else |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1887 { |
102999
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1888 while (cursor >= p_limit) |
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1889 { |
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1890 if (BM_tab[*cursor] == 0) |
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1891 goto hit; |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1892 cursor += BM_tab[*cursor]; |
102999
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1893 } |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1894 } |
102999
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1895 /* If you are here, cursor is beyond the end of the |
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1896 searched region. You fail to match within the |
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1897 permitted region and would otherwise try a character |
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1898 beyond that region. */ |
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1899 break; |
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1900 |
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1901 hit: |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1902 i = dirlen - direction; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1903 if (! NILP (trt)) |
603 | 1904 { |
1905 while ((i -= direction) + direction != 0) | |
1906 { | |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1907 int ch; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1908 cursor -= direction; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1909 /* Translate only the last byte of a character. */ |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1910 if (! multibyte |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1911 || ((cursor == tail_end_ptr |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1912 || CHAR_HEAD_P (cursor[1])) |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1913 && (CHAR_HEAD_P (cursor[0]) |
61189
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1914 /* Check if this is the last byte of |
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1915 a translable character. */ |
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1916 || (translate_prev_byte1 == cursor[-1] |
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1917 && (CHAR_HEAD_P (translate_prev_byte1) |
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1918 || (translate_prev_byte2 == cursor[-2] |
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1919 && (CHAR_HEAD_P (translate_prev_byte2) |
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
1920 || (translate_prev_byte3 == cursor[-3])))))))) |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1921 ch = simple_translate[*cursor]; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1922 else |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1923 ch = *cursor; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1924 if (pat[i] != ch) |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1925 break; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1926 } |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1927 } |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1928 else |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1929 { |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1930 while ((i -= direction) + direction != 0) |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1931 { |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1932 cursor -= direction; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1933 if (pat[i] != *cursor) |
603 | 1934 break; |
1935 } | |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1936 } |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1937 cursor += dirlen - i - direction; /* fix cursor */ |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1938 if (i + direction == 0) |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1939 { |
103001
6b3176775d00
* search.c: Use EMACS_INT for buffer positions. Add prototypes.
Andreas Schwab <schwab@linux-m68k.org>
parents:
102999
diff
changeset
|
1940 EMACS_INT position, start, end; |
708 | 1941 |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1942 cursor -= direction; |
20588
138c95482e6b
(search_buffer): Handle bytes vs chars in non-RE case.
Richard M. Stallman <rms@gnu.org>
parents:
20547
diff
changeset
|
1943 |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1944 position = pos_byte + cursor - p2 + ((direction > 0) |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1945 ? 1 - len_byte : 0); |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1946 set_search_regs (position, len_byte); |
708 | 1947 |
81780
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1948 if (NILP (Vinhibit_changing_match_data)) |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1949 { |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1950 start = search_regs.start[0]; |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1951 end = search_regs.end[0]; |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1952 } |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1953 else |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1954 /* If Vinhibit_changing_match_data is non-nil, |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1955 search_regs will not be changed. So let's |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1956 compute start and end here. */ |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1957 { |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1958 start = BYTE_TO_CHAR (position); |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1959 end = BYTE_TO_CHAR (position + len_byte); |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1960 } |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1961 |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1962 if ((n -= direction) != 0) |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1963 cursor += dirlen; /* to resume search */ |
603 | 1964 else |
81780
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
1965 return direction > 0 ? end : start; |
603 | 1966 } |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1967 else |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1968 cursor += stride_for_teases; /* <sigh> we lose - */ |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1969 } |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1970 pos_byte += cursor - p2; |
603 | 1971 } |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1972 else |
102999
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1973 /* Now we'll pick up a clump that has to be done the hard |
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1974 way because it covers a discontinuity. */ |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1975 { |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1976 limit = ((direction > 0) |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1977 ? BUFFER_CEILING_OF (pos_byte - dirlen + 1) |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1978 : BUFFER_FLOOR_OF (pos_byte - dirlen - 1)); |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1979 limit = ((direction > 0) |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1980 ? min (limit + len_byte, lim_byte - 1) |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1981 : max (limit - len_byte, lim_byte)); |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1982 /* LIMIT is now the last value POS_BYTE can have |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1983 and still be valid for a possible match. */ |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1984 while (1) |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1985 { |
102999
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1986 /* This loop can be coded for space rather than |
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1987 speed because it will usually run only once. |
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1988 (the reach is at most len + 21, and typically |
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1989 does not exceed len). */ |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
1990 while ((limit - pos_byte) * direction >= 0) |
102999
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1991 { |
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1992 int ch = FETCH_BYTE (pos_byte); |
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1993 if (BM_tab[ch] == 0) |
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1994 goto hit2; |
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1995 pos_byte += BM_tab[ch]; |
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1996 } |
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1997 break; /* ran off the end */ |
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1998 |
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
1999 hit2: |
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
2000 /* Found what might be a match. */ |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
2001 i = dirlen - direction; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
2002 while ((i -= direction) + direction != 0) |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
2003 { |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
2004 int ch; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
2005 unsigned char *ptr; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
2006 pos_byte -= direction; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
2007 ptr = BYTE_POS_ADDR (pos_byte); |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
2008 /* Translate only the last byte of a character. */ |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
2009 if (! multibyte |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
2010 || ((ptr == tail_end_ptr |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
2011 || CHAR_HEAD_P (ptr[1])) |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
2012 && (CHAR_HEAD_P (ptr[0]) |
61189
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
2013 /* Check if this is the last byte of a |
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
2014 translable character. */ |
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
2015 || (translate_prev_byte1 == ptr[-1] |
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
2016 && (CHAR_HEAD_P (translate_prev_byte1) |
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
2017 || (translate_prev_byte2 == ptr[-2] |
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
2018 && (CHAR_HEAD_P (translate_prev_byte2) |
91ba6c641a60
(looking_at_1): Use current_buffer->case_canon_table,
Kenichi Handa <handa@m17n.org>
parents:
58567
diff
changeset
|
2019 || translate_prev_byte3 == ptr[-3]))))))) |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
2020 ch = simple_translate[*ptr]; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
2021 else |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
2022 ch = *ptr; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
2023 if (pat[i] != ch) |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
2024 break; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
2025 } |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
2026 /* Above loop has moved POS_BYTE part or all the way |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
2027 back to the first pos (last pos if reverse). |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
2028 Set it once again at the last (first if reverse) char. */ |
102999
4dbc3b20d83b
(boyer_moore): Use zero as marker value for a possible
Andreas Schwab <schwab@linux-m68k.org>
parents:
102978
diff
changeset
|
2029 pos_byte += dirlen - i - direction; |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
2030 if (i + direction == 0) |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
2031 { |
103001
6b3176775d00
* search.c: Use EMACS_INT for buffer positions. Add prototypes.
Andreas Schwab <schwab@linux-m68k.org>
parents:
102999
diff
changeset
|
2032 EMACS_INT position, start, end; |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
2033 pos_byte -= direction; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
2034 |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
2035 position = pos_byte + ((direction > 0) ? 1 - len_byte : 0); |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
2036 set_search_regs (position, len_byte); |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
2037 |
81780
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
2038 if (NILP (Vinhibit_changing_match_data)) |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
2039 { |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
2040 start = search_regs.start[0]; |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
2041 end = search_regs.end[0]; |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
2042 } |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
2043 else |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
2044 /* If Vinhibit_changing_match_data is non-nil, |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
2045 search_regs will not be changed. So let's |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
2046 compute start and end here. */ |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
2047 { |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
2048 start = BYTE_TO_CHAR (position); |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
2049 end = BYTE_TO_CHAR (position + len_byte); |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
2050 } |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
2051 |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
2052 if ((n -= direction) != 0) |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
2053 pos_byte += dirlen; /* to resume search */ |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
2054 else |
81780
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
2055 return direction > 0 ? end : start; |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
2056 } |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
2057 else |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
2058 pos_byte += stride_for_teases; |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
2059 } |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
2060 } |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
2061 /* We have done one clump. Can we continue? */ |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
2062 if ((lim_byte - pos_byte) * direction < 0) |
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
2063 return ((0 - n) * direction); |
603 | 2064 } |
20869
c9f608f889b4
(boyer_moore, simple_search): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents:
20824
diff
changeset
|
2065 return BYTE_TO_CHAR (pos_byte); |
603 | 2066 } |
5556
14161cfec24a
(set_search_regs): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
4954
diff
changeset
|
2067 |
20545
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
2068 /* Record beginning BEG_BYTE and end BEG_BYTE + NBYTES |
22082
84bcdbc46d71
(search_buffer): Set search regs for all success with an empty string.
Richard M. Stallman <rms@gnu.org>
parents:
21988
diff
changeset
|
2069 for the overall match just found in the current buffer. |
84bcdbc46d71
(search_buffer): Set search regs for all success with an empty string.
Richard M. Stallman <rms@gnu.org>
parents:
21988
diff
changeset
|
2070 Also clear out the match data for registers 1 and up. */ |
5556
14161cfec24a
(set_search_regs): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
4954
diff
changeset
|
2071 |
14161cfec24a
(set_search_regs): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
4954
diff
changeset
|
2072 static void |
109126
aec1143e8d85
Convert (most) functions in src to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109100
diff
changeset
|
2073 set_search_regs (EMACS_INT beg_byte, EMACS_INT nbytes) |
5556
14161cfec24a
(set_search_regs): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
4954
diff
changeset
|
2074 { |
22082
84bcdbc46d71
(search_buffer): Set search regs for all success with an empty string.
Richard M. Stallman <rms@gnu.org>
parents:
21988
diff
changeset
|
2075 int i; |
84bcdbc46d71
(search_buffer): Set search regs for all success with an empty string.
Richard M. Stallman <rms@gnu.org>
parents:
21988
diff
changeset
|
2076 |
81780
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
2077 if (!NILP (Vinhibit_changing_match_data)) |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
2078 return; |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
2079 |
5556
14161cfec24a
(set_search_regs): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
4954
diff
changeset
|
2080 /* Make sure we have registers in which to store |
14161cfec24a
(set_search_regs): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
4954
diff
changeset
|
2081 the match position. */ |
14161cfec24a
(set_search_regs): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
4954
diff
changeset
|
2082 if (search_regs.num_regs == 0) |
14161cfec24a
(set_search_regs): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
4954
diff
changeset
|
2083 { |
10250
422c3b96efda
(set_search_regs): Really set search_regs.start and .end.
Richard M. Stallman <rms@gnu.org>
parents:
10141
diff
changeset
|
2084 search_regs.start = (regoff_t *) xmalloc (2 * sizeof (regoff_t)); |
422c3b96efda
(set_search_regs): Really set search_regs.start and .end.
Richard M. Stallman <rms@gnu.org>
parents:
10141
diff
changeset
|
2085 search_regs.end = (regoff_t *) xmalloc (2 * sizeof (regoff_t)); |
9605
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
2086 search_regs.num_regs = 2; |
5556
14161cfec24a
(set_search_regs): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
4954
diff
changeset
|
2087 } |
14161cfec24a
(set_search_regs): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
4954
diff
changeset
|
2088 |
22082
84bcdbc46d71
(search_buffer): Set search regs for all success with an empty string.
Richard M. Stallman <rms@gnu.org>
parents:
21988
diff
changeset
|
2089 /* Clear out the other registers. */ |
84bcdbc46d71
(search_buffer): Set search regs for all success with an empty string.
Richard M. Stallman <rms@gnu.org>
parents:
21988
diff
changeset
|
2090 for (i = 1; i < search_regs.num_regs; i++) |
84bcdbc46d71
(search_buffer): Set search regs for all success with an empty string.
Richard M. Stallman <rms@gnu.org>
parents:
21988
diff
changeset
|
2091 { |
84bcdbc46d71
(search_buffer): Set search regs for all success with an empty string.
Richard M. Stallman <rms@gnu.org>
parents:
21988
diff
changeset
|
2092 search_regs.start[i] = -1; |
84bcdbc46d71
(search_buffer): Set search regs for all success with an empty string.
Richard M. Stallman <rms@gnu.org>
parents:
21988
diff
changeset
|
2093 search_regs.end[i] = -1; |
84bcdbc46d71
(search_buffer): Set search regs for all success with an empty string.
Richard M. Stallman <rms@gnu.org>
parents:
21988
diff
changeset
|
2094 } |
84bcdbc46d71
(search_buffer): Set search regs for all success with an empty string.
Richard M. Stallman <rms@gnu.org>
parents:
21988
diff
changeset
|
2095 |
20545
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
2096 search_regs.start[0] = BYTE_TO_CHAR (beg_byte); |
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
2097 search_regs.end[0] = BYTE_TO_CHAR (beg_byte + nbytes); |
9278
f2138d548313
(Flooking_at, skip_chars, search_buffer, set_search_regs, Fstore_match_data):
Karl Heuer <kwzh@gnu.org>
parents:
9113
diff
changeset
|
2098 XSETBUFFER (last_thing_searched, current_buffer); |
5556
14161cfec24a
(set_search_regs): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
4954
diff
changeset
|
2099 } |
603 | 2100 |
98347
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
2101 /* Given STRING, a string of words separated by word delimiters, |
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
2102 compute a regexp that matches those exact words separated by |
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
2103 arbitrary punctuation. If LAX is nonzero, the end of the string |
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
2104 need not match a word boundary unless it ends in whitespace. */ |
603 | 2105 |
2106 static Lisp_Object | |
109126
aec1143e8d85
Convert (most) functions in src to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109100
diff
changeset
|
2107 wordify (Lisp_Object string, int lax) |
603 | 2108 { |
2109 register unsigned char *p, *o; | |
110507
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
2110 register EMACS_INT i, i_byte, len, punct_count = 0, word_count = 0; |
603 | 2111 Lisp_Object val; |
20588
138c95482e6b
(search_buffer): Handle bytes vs chars in non-RE case.
Richard M. Stallman <rms@gnu.org>
parents:
20547
diff
changeset
|
2112 int prev_c = 0; |
110507
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
2113 EMACS_INT adjust; |
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
2114 int whitespace_at_end; |
603 | 2115 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40269
diff
changeset
|
2116 CHECK_STRING (string); |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
45263
diff
changeset
|
2117 p = SDATA (string); |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
45263
diff
changeset
|
2118 len = SCHARS (string); |
603 | 2119 |
20588
138c95482e6b
(search_buffer): Handle bytes vs chars in non-RE case.
Richard M. Stallman <rms@gnu.org>
parents:
20547
diff
changeset
|
2120 for (i = 0, i_byte = 0; i < len; ) |
138c95482e6b
(search_buffer): Handle bytes vs chars in non-RE case.
Richard M. Stallman <rms@gnu.org>
parents:
20547
diff
changeset
|
2121 { |
138c95482e6b
(search_buffer): Handle bytes vs chars in non-RE case.
Richard M. Stallman <rms@gnu.org>
parents:
20547
diff
changeset
|
2122 int c; |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48528
diff
changeset
|
2123 |
89062
be059fb97bac
(compile_pattern_1): Don't adjust the multibyteness of
Kenichi Handa <handa@m17n.org>
parents:
89028
diff
changeset
|
2124 FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE (c, string, i, i_byte); |
603 | 2125 |
20588
138c95482e6b
(search_buffer): Handle bytes vs chars in non-RE case.
Richard M. Stallman <rms@gnu.org>
parents:
20547
diff
changeset
|
2126 if (SYNTAX (c) != Sword) |
138c95482e6b
(search_buffer): Handle bytes vs chars in non-RE case.
Richard M. Stallman <rms@gnu.org>
parents:
20547
diff
changeset
|
2127 { |
138c95482e6b
(search_buffer): Handle bytes vs chars in non-RE case.
Richard M. Stallman <rms@gnu.org>
parents:
20547
diff
changeset
|
2128 punct_count++; |
138c95482e6b
(search_buffer): Handle bytes vs chars in non-RE case.
Richard M. Stallman <rms@gnu.org>
parents:
20547
diff
changeset
|
2129 if (i > 0 && SYNTAX (prev_c) == Sword) |
138c95482e6b
(search_buffer): Handle bytes vs chars in non-RE case.
Richard M. Stallman <rms@gnu.org>
parents:
20547
diff
changeset
|
2130 word_count++; |
138c95482e6b
(search_buffer): Handle bytes vs chars in non-RE case.
Richard M. Stallman <rms@gnu.org>
parents:
20547
diff
changeset
|
2131 } |
138c95482e6b
(search_buffer): Handle bytes vs chars in non-RE case.
Richard M. Stallman <rms@gnu.org>
parents:
20547
diff
changeset
|
2132 |
138c95482e6b
(search_buffer): Handle bytes vs chars in non-RE case.
Richard M. Stallman <rms@gnu.org>
parents:
20547
diff
changeset
|
2133 prev_c = c; |
138c95482e6b
(search_buffer): Handle bytes vs chars in non-RE case.
Richard M. Stallman <rms@gnu.org>
parents:
20547
diff
changeset
|
2134 } |
138c95482e6b
(search_buffer): Handle bytes vs chars in non-RE case.
Richard M. Stallman <rms@gnu.org>
parents:
20547
diff
changeset
|
2135 |
138c95482e6b
(search_buffer): Handle bytes vs chars in non-RE case.
Richard M. Stallman <rms@gnu.org>
parents:
20547
diff
changeset
|
2136 if (SYNTAX (prev_c) == Sword) |
98347
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
2137 { |
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
2138 word_count++; |
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
2139 whitespace_at_end = 0; |
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
2140 } |
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
2141 else |
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
2142 whitespace_at_end = 1; |
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
2143 |
20588
138c95482e6b
(search_buffer): Handle bytes vs chars in non-RE case.
Richard M. Stallman <rms@gnu.org>
parents:
20547
diff
changeset
|
2144 if (!word_count) |
81279
326992131788
(wordify): Use empty_unibyte_string.
Juanma Barranquero <lekktu@gmail.com>
parents:
75227
diff
changeset
|
2145 return empty_unibyte_string; |
20588
138c95482e6b
(search_buffer): Handle bytes vs chars in non-RE case.
Richard M. Stallman <rms@gnu.org>
parents:
20547
diff
changeset
|
2146 |
98347
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
2147 adjust = - punct_count + 5 * (word_count - 1) |
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
2148 + ((lax && !whitespace_at_end) ? 2 : 4); |
22640
929ad308aba6
(wordify): Fix i_byte even in unibyte case for copy loop.
Richard M. Stallman <rms@gnu.org>
parents:
22533
diff
changeset
|
2149 if (STRING_MULTIBYTE (string)) |
929ad308aba6
(wordify): Fix i_byte even in unibyte case for copy loop.
Richard M. Stallman <rms@gnu.org>
parents:
22533
diff
changeset
|
2150 val = make_uninit_multibyte_string (len + adjust, |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
45263
diff
changeset
|
2151 SBYTES (string) |
22640
929ad308aba6
(wordify): Fix i_byte even in unibyte case for copy loop.
Richard M. Stallman <rms@gnu.org>
parents:
22533
diff
changeset
|
2152 + adjust); |
929ad308aba6
(wordify): Fix i_byte even in unibyte case for copy loop.
Richard M. Stallman <rms@gnu.org>
parents:
22533
diff
changeset
|
2153 else |
929ad308aba6
(wordify): Fix i_byte even in unibyte case for copy loop.
Richard M. Stallman <rms@gnu.org>
parents:
22533
diff
changeset
|
2154 val = make_uninit_string (len + adjust); |
603 | 2155 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
45263
diff
changeset
|
2156 o = SDATA (val); |
603 | 2157 *o++ = '\\'; |
2158 *o++ = 'b'; | |
21887
1c9f20274f76
(wordify): Do the second loop by chars, not by bytes.
Richard M. Stallman <rms@gnu.org>
parents:
21531
diff
changeset
|
2159 prev_c = 0; |
603 | 2160 |
21887
1c9f20274f76
(wordify): Do the second loop by chars, not by bytes.
Richard M. Stallman <rms@gnu.org>
parents:
21531
diff
changeset
|
2161 for (i = 0, i_byte = 0; i < len; ) |
1c9f20274f76
(wordify): Do the second loop by chars, not by bytes.
Richard M. Stallman <rms@gnu.org>
parents:
21531
diff
changeset
|
2162 { |
1c9f20274f76
(wordify): Do the second loop by chars, not by bytes.
Richard M. Stallman <rms@gnu.org>
parents:
21531
diff
changeset
|
2163 int c; |
110507
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
2164 EMACS_INT i_byte_orig = i_byte; |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48528
diff
changeset
|
2165 |
89062
be059fb97bac
(compile_pattern_1): Don't adjust the multibyteness of
Kenichi Handa <handa@m17n.org>
parents:
89028
diff
changeset
|
2166 FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE (c, string, i, i_byte); |
21887
1c9f20274f76
(wordify): Do the second loop by chars, not by bytes.
Richard M. Stallman <rms@gnu.org>
parents:
21531
diff
changeset
|
2167 |
1c9f20274f76
(wordify): Do the second loop by chars, not by bytes.
Richard M. Stallman <rms@gnu.org>
parents:
21531
diff
changeset
|
2168 if (SYNTAX (c) == Sword) |
1c9f20274f76
(wordify): Do the second loop by chars, not by bytes.
Richard M. Stallman <rms@gnu.org>
parents:
21531
diff
changeset
|
2169 { |
109165
750db9f3e6d8
Replace bcopy, bzero, bcmp by memcpy, memmove, memset, memcmp
Andreas Schwab <schwab@linux-m68k.org>
parents:
109126
diff
changeset
|
2170 memcpy (o, SDATA (string) + i_byte_orig, i_byte - i_byte_orig); |
21887
1c9f20274f76
(wordify): Do the second loop by chars, not by bytes.
Richard M. Stallman <rms@gnu.org>
parents:
21531
diff
changeset
|
2171 o += i_byte - i_byte_orig; |
1c9f20274f76
(wordify): Do the second loop by chars, not by bytes.
Richard M. Stallman <rms@gnu.org>
parents:
21531
diff
changeset
|
2172 } |
1c9f20274f76
(wordify): Do the second loop by chars, not by bytes.
Richard M. Stallman <rms@gnu.org>
parents:
21531
diff
changeset
|
2173 else if (i > 0 && SYNTAX (prev_c) == Sword && --word_count) |
1c9f20274f76
(wordify): Do the second loop by chars, not by bytes.
Richard M. Stallman <rms@gnu.org>
parents:
21531
diff
changeset
|
2174 { |
1c9f20274f76
(wordify): Do the second loop by chars, not by bytes.
Richard M. Stallman <rms@gnu.org>
parents:
21531
diff
changeset
|
2175 *o++ = '\\'; |
1c9f20274f76
(wordify): Do the second loop by chars, not by bytes.
Richard M. Stallman <rms@gnu.org>
parents:
21531
diff
changeset
|
2176 *o++ = 'W'; |
1c9f20274f76
(wordify): Do the second loop by chars, not by bytes.
Richard M. Stallman <rms@gnu.org>
parents:
21531
diff
changeset
|
2177 *o++ = '\\'; |
1c9f20274f76
(wordify): Do the second loop by chars, not by bytes.
Richard M. Stallman <rms@gnu.org>
parents:
21531
diff
changeset
|
2178 *o++ = 'W'; |
1c9f20274f76
(wordify): Do the second loop by chars, not by bytes.
Richard M. Stallman <rms@gnu.org>
parents:
21531
diff
changeset
|
2179 *o++ = '*'; |
1c9f20274f76
(wordify): Do the second loop by chars, not by bytes.
Richard M. Stallman <rms@gnu.org>
parents:
21531
diff
changeset
|
2180 } |
1c9f20274f76
(wordify): Do the second loop by chars, not by bytes.
Richard M. Stallman <rms@gnu.org>
parents:
21531
diff
changeset
|
2181 |
1c9f20274f76
(wordify): Do the second loop by chars, not by bytes.
Richard M. Stallman <rms@gnu.org>
parents:
21531
diff
changeset
|
2182 prev_c = c; |
1c9f20274f76
(wordify): Do the second loop by chars, not by bytes.
Richard M. Stallman <rms@gnu.org>
parents:
21531
diff
changeset
|
2183 } |
603 | 2184 |
98347
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
2185 if (!lax || whitespace_at_end) |
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
2186 { |
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
2187 *o++ = '\\'; |
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
2188 *o++ = 'b'; |
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
2189 } |
603 | 2190 |
2191 return val; | |
2192 } | |
2193 | |
2194 DEFUN ("search-backward", Fsearch_backward, Ssearch_backward, 1, 4, | |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2195 "MSearch backward: ", |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2196 doc: /* Search backward from point for STRING. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2197 Set point to the beginning of the occurrence found, and return point. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2198 An optional second argument bounds the search; it is a buffer position. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2199 The match found must not extend before that position. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2200 Optional third argument, if t, means if fail just return nil (no error). |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2201 If not nil and not t, position at limit of search and return nil. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2202 Optional fourth argument is repeat count--search for successive occurrences. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2203 |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2204 Search case-sensitivity is determined by the value of the variable |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2205 `case-fold-search', which see. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2206 |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2207 See also the functions `match-beginning', `match-end' and `replace-match'. */) |
109179
8cfee7d2955f
Convert DEFUNs to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109165
diff
changeset
|
2208 (Lisp_Object string, Lisp_Object bound, Lisp_Object noerror, Lisp_Object count) |
603 | 2209 { |
10020
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
2210 return search_command (string, bound, noerror, count, -1, 0, 0); |
603 | 2211 } |
2212 | |
19541
e7876a076881
(Fsearch_backward): Inherit the current input method on
Kenichi Handa <handa@m17n.org>
parents:
18762
diff
changeset
|
2213 DEFUN ("search-forward", Fsearch_forward, Ssearch_forward, 1, 4, "MSearch: ", |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2214 doc: /* Search forward from point for STRING. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2215 Set point to the end of the occurrence found, and return point. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2216 An optional second argument bounds the search; it is a buffer position. |
74917
898edc583814
(Fsearch_forward): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
74756
diff
changeset
|
2217 The match found must not extend after that position. A value of nil is |
74756
c751765838ca
(Fsearch_forward): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
74033
diff
changeset
|
2218 equivalent to (point-max). |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2219 Optional third argument, if t, means if fail just return nil (no error). |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2220 If not nil and not t, move to limit of search and return nil. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2221 Optional fourth argument is repeat count--search for successive occurrences. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2222 |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2223 Search case-sensitivity is determined by the value of the variable |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2224 `case-fold-search', which see. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2225 |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2226 See also the functions `match-beginning', `match-end' and `replace-match'. */) |
109179
8cfee7d2955f
Convert DEFUNs to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109165
diff
changeset
|
2227 (Lisp_Object string, Lisp_Object bound, Lisp_Object noerror, Lisp_Object count) |
603 | 2228 { |
10020
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
2229 return search_command (string, bound, noerror, count, 1, 0, 0); |
603 | 2230 } |
2231 | |
2232 DEFUN ("word-search-backward", Fword_search_backward, Sword_search_backward, 1, 4, | |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2233 "sWord search backward: ", |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2234 doc: /* Search backward from point for STRING, ignoring differences in punctuation. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2235 Set point to the beginning of the occurrence found, and return point. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2236 An optional second argument bounds the search; it is a buffer position. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2237 The match found must not extend before that position. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2238 Optional third argument, if t, means if fail just return nil (no error). |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2239 If not nil and not t, move to limit of search and return nil. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2240 Optional fourth argument is repeat count--search for successive occurrences. */) |
109179
8cfee7d2955f
Convert DEFUNs to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109165
diff
changeset
|
2241 (Lisp_Object string, Lisp_Object bound, Lisp_Object noerror, Lisp_Object count) |
603 | 2242 { |
98347
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
2243 return search_command (wordify (string, 0), bound, noerror, count, -1, 1, 0); |
603 | 2244 } |
2245 | |
2246 DEFUN ("word-search-forward", Fword_search_forward, Sword_search_forward, 1, 4, | |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2247 "sWord search: ", |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2248 doc: /* Search forward from point for STRING, ignoring differences in punctuation. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2249 Set point to the end of the occurrence found, and return point. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2250 An optional second argument bounds the search; it is a buffer position. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2251 The match found must not extend after that position. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2252 Optional third argument, if t, means if fail just return nil (no error). |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2253 If not nil and not t, move to limit of search and return nil. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2254 Optional fourth argument is repeat count--search for successive occurrences. */) |
109179
8cfee7d2955f
Convert DEFUNs to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109165
diff
changeset
|
2255 (Lisp_Object string, Lisp_Object bound, Lisp_Object noerror, Lisp_Object count) |
603 | 2256 { |
98347
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
2257 return search_command (wordify (string, 0), bound, noerror, count, 1, 1, 0); |
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
2258 } |
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
2259 |
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
2260 DEFUN ("word-search-backward-lax", Fword_search_backward_lax, Sword_search_backward_lax, 1, 4, |
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
2261 "sWord search backward: ", |
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
2262 doc: /* Search backward from point for STRING, ignoring differences in punctuation. |
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
2263 Set point to the beginning of the occurrence found, and return point. |
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
2264 |
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
2265 Unlike `word-search-backward', the end of STRING need not match a word |
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
2266 boundary unless it ends in whitespace. |
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
2267 |
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
2268 An optional second argument bounds the search; it is a buffer position. |
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
2269 The match found must not extend before that position. |
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
2270 Optional third argument, if t, means if fail just return nil (no error). |
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
2271 If not nil and not t, move to limit of search and return nil. |
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
2272 Optional fourth argument is repeat count--search for successive occurrences. */) |
109179
8cfee7d2955f
Convert DEFUNs to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109165
diff
changeset
|
2273 (Lisp_Object string, Lisp_Object bound, Lisp_Object noerror, Lisp_Object count) |
98347
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
2274 { |
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
2275 return search_command (wordify (string, 1), bound, noerror, count, -1, 1, 0); |
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
2276 } |
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
2277 |
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
2278 DEFUN ("word-search-forward-lax", Fword_search_forward_lax, Sword_search_forward_lax, 1, 4, |
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
2279 "sWord search: ", |
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
2280 doc: /* Search forward from point for STRING, ignoring differences in punctuation. |
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
2281 Set point to the end of the occurrence found, and return point. |
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
2282 |
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
2283 Unlike `word-search-forward', the end of STRING need not match a word |
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
2284 boundary unless it ends in whitespace. |
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
2285 |
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
2286 An optional second argument bounds the search; it is a buffer position. |
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
2287 The match found must not extend after that position. |
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
2288 Optional third argument, if t, means if fail just return nil (no error). |
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
2289 If not nil and not t, move to limit of search and return nil. |
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
2290 Optional fourth argument is repeat count--search for successive occurrences. */) |
109179
8cfee7d2955f
Convert DEFUNs to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109165
diff
changeset
|
2291 (Lisp_Object string, Lisp_Object bound, Lisp_Object noerror, Lisp_Object count) |
98347
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
2292 { |
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
2293 return search_command (wordify (string, 1), bound, noerror, count, 1, 1, 0); |
603 | 2294 } |
2295 | |
2296 DEFUN ("re-search-backward", Fre_search_backward, Sre_search_backward, 1, 4, | |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2297 "sRE search backward: ", |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2298 doc: /* Search backward from point for match for regular expression REGEXP. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2299 Set point to the beginning of the match, and return point. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2300 The match found is the one starting last in the buffer |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2301 and yet ending before the origin of the search. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2302 An optional second argument bounds the search; it is a buffer position. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2303 The match found must start at or after that position. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2304 Optional third argument, if t, means if fail just return nil (no error). |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2305 If not nil and not t, move to limit of search and return nil. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2306 Optional fourth argument is repeat count--search for successive occurrences. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2307 See also the functions `match-beginning', `match-end', `match-string', |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2308 and `replace-match'. */) |
109179
8cfee7d2955f
Convert DEFUNs to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109165
diff
changeset
|
2309 (Lisp_Object regexp, Lisp_Object bound, Lisp_Object noerror, Lisp_Object count) |
603 | 2310 { |
10020
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
2311 return search_command (regexp, bound, noerror, count, -1, 1, 0); |
603 | 2312 } |
2313 | |
2314 DEFUN ("re-search-forward", Fre_search_forward, Sre_search_forward, 1, 4, | |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2315 "sRE search: ", |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2316 doc: /* Search forward from point for regular expression REGEXP. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2317 Set point to the end of the occurrence found, and return point. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2318 An optional second argument bounds the search; it is a buffer position. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2319 The match found must not extend after that position. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2320 Optional third argument, if t, means if fail just return nil (no error). |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2321 If not nil and not t, move to limit of search and return nil. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2322 Optional fourth argument is repeat count--search for successive occurrences. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2323 See also the functions `match-beginning', `match-end', `match-string', |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2324 and `replace-match'. */) |
109179
8cfee7d2955f
Convert DEFUNs to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109165
diff
changeset
|
2325 (Lisp_Object regexp, Lisp_Object bound, Lisp_Object noerror, Lisp_Object count) |
603 | 2326 { |
10020
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
2327 return search_command (regexp, bound, noerror, count, 1, 1, 0); |
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
2328 } |
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
2329 |
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
2330 DEFUN ("posix-search-backward", Fposix_search_backward, Sposix_search_backward, 1, 4, |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2331 "sPosix search backward: ", |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2332 doc: /* Search backward from point for match for regular expression REGEXP. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2333 Find the longest match in accord with Posix regular expression rules. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2334 Set point to the beginning of the match, and return point. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2335 The match found is the one starting last in the buffer |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2336 and yet ending before the origin of the search. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2337 An optional second argument bounds the search; it is a buffer position. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2338 The match found must start at or after that position. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2339 Optional third argument, if t, means if fail just return nil (no error). |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2340 If not nil and not t, move to limit of search and return nil. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2341 Optional fourth argument is repeat count--search for successive occurrences. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2342 See also the functions `match-beginning', `match-end', `match-string', |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2343 and `replace-match'. */) |
109179
8cfee7d2955f
Convert DEFUNs to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109165
diff
changeset
|
2344 (Lisp_Object regexp, Lisp_Object bound, Lisp_Object noerror, Lisp_Object count) |
10020
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
2345 { |
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
2346 return search_command (regexp, bound, noerror, count, -1, 1, 1); |
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
2347 } |
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
2348 |
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
2349 DEFUN ("posix-search-forward", Fposix_search_forward, Sposix_search_forward, 1, 4, |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2350 "sPosix search: ", |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2351 doc: /* Search forward from point for regular expression REGEXP. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2352 Find the longest match in accord with Posix regular expression rules. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2353 Set point to the end of the occurrence found, and return point. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2354 An optional second argument bounds the search; it is a buffer position. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2355 The match found must not extend after that position. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2356 Optional third argument, if t, means if fail just return nil (no error). |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2357 If not nil and not t, move to limit of search and return nil. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2358 Optional fourth argument is repeat count--search for successive occurrences. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2359 See also the functions `match-beginning', `match-end', `match-string', |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2360 and `replace-match'. */) |
109179
8cfee7d2955f
Convert DEFUNs to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109165
diff
changeset
|
2361 (Lisp_Object regexp, Lisp_Object bound, Lisp_Object noerror, Lisp_Object count) |
10020
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
2362 { |
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
2363 return search_command (regexp, bound, noerror, count, 1, 1, 1); |
603 | 2364 } |
2365 | |
12807
34d269b30df1
(Freplace_match): New arg SUBEXP.
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
2366 DEFUN ("replace-match", Freplace_match, Sreplace_match, 1, 5, 0, |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2367 doc: /* Replace text matched by last search with NEWTEXT. |
45217
4383b69f181b
(Freplace_match): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
41389
diff
changeset
|
2368 Leave point at the end of the replacement text. |
4383b69f181b
(Freplace_match): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
41389
diff
changeset
|
2369 |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2370 If second arg FIXEDCASE is non-nil, do not alter case of replacement text. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2371 Otherwise maybe capitalize the whole text, or maybe just word initials, |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2372 based on the replaced text. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2373 If the replaced text has only capital letters |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2374 and has at least one multiletter word, convert NEWTEXT to all caps. |
45217
4383b69f181b
(Freplace_match): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
41389
diff
changeset
|
2375 Otherwise if all words are capitalized in the replaced text, |
4383b69f181b
(Freplace_match): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
41389
diff
changeset
|
2376 capitalize each word in NEWTEXT. |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2377 |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2378 If third arg LITERAL is non-nil, insert NEWTEXT literally. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2379 Otherwise treat `\\' as special: |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2380 `\\&' in NEWTEXT means substitute original matched text. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2381 `\\N' means substitute what matched the Nth `\\(...\\)'. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2382 If Nth parens didn't match, substitute nothing. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2383 `\\\\' means insert one `\\'. |
45217
4383b69f181b
(Freplace_match): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
41389
diff
changeset
|
2384 Case conversion does not apply to these substitutions. |
4383b69f181b
(Freplace_match): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
41389
diff
changeset
|
2385 |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2386 FIXEDCASE and LITERAL are optional arguments. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2387 |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2388 The optional fourth argument STRING can be a string to modify. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2389 This is meaningful when the previous match was done against STRING, |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2390 using `string-match'. When used this way, `replace-match' |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2391 creates and returns a new string made by copying STRING and replacing |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2392 the part of STRING that was matched. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2393 |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2394 The optional fifth argument SUBEXP specifies a subexpression; |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2395 it says to replace just that subexpression with NEWTEXT, |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2396 rather than replacing the entire matched text. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2397 This is, in a vague sense, the inverse of using `\\N' in NEWTEXT; |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2398 `\\N' copies subexp N into NEWTEXT, but using N as SUBEXP puts |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2399 NEWTEXT in place of subexp N. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2400 This is useful only after a regular expression search or match, |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2401 since only regular expressions have distinguished subexpressions. */) |
109179
8cfee7d2955f
Convert DEFUNs to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109165
diff
changeset
|
2402 (Lisp_Object newtext, Lisp_Object fixedcase, Lisp_Object literal, Lisp_Object string, Lisp_Object subexp) |
603 | 2403 { |
2404 enum { nochange, all_caps, cap_initial } case_action; | |
110507
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
2405 register EMACS_INT pos, pos_byte; |
603 | 2406 int some_multiletter_word; |
2393
a35d2c5cbb3b
(Freplace_match): Clean up criterion about converting case.
Richard M. Stallman <rms@gnu.org>
parents:
1926
diff
changeset
|
2407 int some_lowercase; |
7674
947d24fefd9e
(Freplace_match): Improve capitalization heuristics.
Karl Heuer <kwzh@gnu.org>
parents:
7673
diff
changeset
|
2408 int some_uppercase; |
8526
2b7b23059f1b
(Freplace_match): Treat caseless initial like a lowercase initial.
Richard M. Stallman <rms@gnu.org>
parents:
7891
diff
changeset
|
2409 int some_nonuppercase_initial; |
603 | 2410 register int c, prevc; |
12807
34d269b30df1
(Freplace_match): New arg SUBEXP.
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
2411 int sub; |
103001
6b3176775d00
* search.c: Use EMACS_INT for buffer positions. Add prototypes.
Andreas Schwab <schwab@linux-m68k.org>
parents:
102999
diff
changeset
|
2412 EMACS_INT opoint, newpoint; |
603 | 2413 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40269
diff
changeset
|
2414 CHECK_STRING (newtext); |
603 | 2415 |
9029
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2416 if (! NILP (string)) |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40269
diff
changeset
|
2417 CHECK_STRING (string); |
9029
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2418 |
603 | 2419 case_action = nochange; /* We tried an initialization */ |
2420 /* but some C compilers blew it */ | |
621 | 2421 |
2422 if (search_regs.num_regs <= 0) | |
63702
6d4accecc80c
(Freplace_match): Follow error conventions.
Juanma Barranquero <lekktu@gmail.com>
parents:
63666
diff
changeset
|
2423 error ("`replace-match' called before any match found"); |
621 | 2424 |
12807
34d269b30df1
(Freplace_match): New arg SUBEXP.
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
2425 if (NILP (subexp)) |
34d269b30df1
(Freplace_match): New arg SUBEXP.
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
2426 sub = 0; |
34d269b30df1
(Freplace_match): New arg SUBEXP.
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
2427 else |
34d269b30df1
(Freplace_match): New arg SUBEXP.
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
2428 { |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40269
diff
changeset
|
2429 CHECK_NUMBER (subexp); |
12807
34d269b30df1
(Freplace_match): New arg SUBEXP.
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
2430 sub = XINT (subexp); |
34d269b30df1
(Freplace_match): New arg SUBEXP.
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
2431 if (sub < 0 || sub >= search_regs.num_regs) |
34d269b30df1
(Freplace_match): New arg SUBEXP.
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
2432 args_out_of_range (subexp, make_number (search_regs.num_regs)); |
34d269b30df1
(Freplace_match): New arg SUBEXP.
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
2433 } |
34d269b30df1
(Freplace_match): New arg SUBEXP.
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
2434 |
9029
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2435 if (NILP (string)) |
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2436 { |
12807
34d269b30df1
(Freplace_match): New arg SUBEXP.
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
2437 if (search_regs.start[sub] < BEGV |
34d269b30df1
(Freplace_match): New arg SUBEXP.
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
2438 || search_regs.start[sub] > search_regs.end[sub] |
34d269b30df1
(Freplace_match): New arg SUBEXP.
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
2439 || search_regs.end[sub] > ZV) |
34d269b30df1
(Freplace_match): New arg SUBEXP.
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
2440 args_out_of_range (make_number (search_regs.start[sub]), |
34d269b30df1
(Freplace_match): New arg SUBEXP.
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
2441 make_number (search_regs.end[sub])); |
9029
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2442 } |
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2443 else |
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2444 { |
12807
34d269b30df1
(Freplace_match): New arg SUBEXP.
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
2445 if (search_regs.start[sub] < 0 |
34d269b30df1
(Freplace_match): New arg SUBEXP.
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
2446 || search_regs.start[sub] > search_regs.end[sub] |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
45263
diff
changeset
|
2447 || search_regs.end[sub] > SCHARS (string)) |
12807
34d269b30df1
(Freplace_match): New arg SUBEXP.
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
2448 args_out_of_range (make_number (search_regs.start[sub]), |
34d269b30df1
(Freplace_match): New arg SUBEXP.
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
2449 make_number (search_regs.end[sub])); |
9029
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2450 } |
603 | 2451 |
2452 if (NILP (fixedcase)) | |
2453 { | |
2454 /* Decide how to casify by examining the matched text. */ | |
103001
6b3176775d00
* search.c: Use EMACS_INT for buffer positions. Add prototypes.
Andreas Schwab <schwab@linux-m68k.org>
parents:
102999
diff
changeset
|
2455 EMACS_INT last; |
22533
6eae236a4f01
(Freplace_match): Work by chars, not by bytes,
Karl Heuer <kwzh@gnu.org>
parents:
22221
diff
changeset
|
2456 |
6eae236a4f01
(Freplace_match): Work by chars, not by bytes,
Karl Heuer <kwzh@gnu.org>
parents:
22221
diff
changeset
|
2457 pos = search_regs.start[sub]; |
6eae236a4f01
(Freplace_match): Work by chars, not by bytes,
Karl Heuer <kwzh@gnu.org>
parents:
22221
diff
changeset
|
2458 last = search_regs.end[sub]; |
603 | 2459 |
20545
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
2460 if (NILP (string)) |
22533
6eae236a4f01
(Freplace_match): Work by chars, not by bytes,
Karl Heuer <kwzh@gnu.org>
parents:
22221
diff
changeset
|
2461 pos_byte = CHAR_TO_BYTE (pos); |
20545
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
2462 else |
22533
6eae236a4f01
(Freplace_match): Work by chars, not by bytes,
Karl Heuer <kwzh@gnu.org>
parents:
22221
diff
changeset
|
2463 pos_byte = string_char_to_byte (string, pos); |
20545
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
2464 |
603 | 2465 prevc = '\n'; |
2466 case_action = all_caps; | |
2467 | |
2468 /* some_multiletter_word is set nonzero if any original word | |
2469 is more than one letter long. */ | |
2470 some_multiletter_word = 0; | |
2393
a35d2c5cbb3b
(Freplace_match): Clean up criterion about converting case.
Richard M. Stallman <rms@gnu.org>
parents:
1926
diff
changeset
|
2471 some_lowercase = 0; |
8526
2b7b23059f1b
(Freplace_match): Treat caseless initial like a lowercase initial.
Richard M. Stallman <rms@gnu.org>
parents:
7891
diff
changeset
|
2472 some_nonuppercase_initial = 0; |
7674
947d24fefd9e
(Freplace_match): Improve capitalization heuristics.
Karl Heuer <kwzh@gnu.org>
parents:
7673
diff
changeset
|
2473 some_uppercase = 0; |
603 | 2474 |
22533
6eae236a4f01
(Freplace_match): Work by chars, not by bytes,
Karl Heuer <kwzh@gnu.org>
parents:
22221
diff
changeset
|
2475 while (pos < last) |
603 | 2476 { |
9029
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2477 if (NILP (string)) |
22533
6eae236a4f01
(Freplace_match): Work by chars, not by bytes,
Karl Heuer <kwzh@gnu.org>
parents:
22221
diff
changeset
|
2478 { |
89062
be059fb97bac
(compile_pattern_1): Don't adjust the multibyteness of
Kenichi Handa <handa@m17n.org>
parents:
89028
diff
changeset
|
2479 c = FETCH_CHAR_AS_MULTIBYTE (pos_byte); |
22533
6eae236a4f01
(Freplace_match): Work by chars, not by bytes,
Karl Heuer <kwzh@gnu.org>
parents:
22221
diff
changeset
|
2480 INC_BOTH (pos, pos_byte); |
6eae236a4f01
(Freplace_match): Work by chars, not by bytes,
Karl Heuer <kwzh@gnu.org>
parents:
22221
diff
changeset
|
2481 } |
9029
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2482 else |
89062
be059fb97bac
(compile_pattern_1): Don't adjust the multibyteness of
Kenichi Handa <handa@m17n.org>
parents:
89028
diff
changeset
|
2483 FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE (c, string, pos, pos_byte); |
9029
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2484 |
603 | 2485 if (LOWERCASEP (c)) |
2486 { | |
2487 /* Cannot be all caps if any original char is lower case */ | |
2488 | |
2393
a35d2c5cbb3b
(Freplace_match): Clean up criterion about converting case.
Richard M. Stallman <rms@gnu.org>
parents:
1926
diff
changeset
|
2489 some_lowercase = 1; |
603 | 2490 if (SYNTAX (prevc) != Sword) |
8526
2b7b23059f1b
(Freplace_match): Treat caseless initial like a lowercase initial.
Richard M. Stallman <rms@gnu.org>
parents:
7891
diff
changeset
|
2491 some_nonuppercase_initial = 1; |
603 | 2492 else |
2493 some_multiletter_word = 1; | |
2494 } | |
68200
5fc4d9faaa2f
(Freplace_match): Use UPPERCASEP instead of !NOCASEP.
Andreas Schwab <schwab@suse.de>
parents:
66751
diff
changeset
|
2495 else if (UPPERCASEP (c)) |
603 | 2496 { |
7674
947d24fefd9e
(Freplace_match): Improve capitalization heuristics.
Karl Heuer <kwzh@gnu.org>
parents:
7673
diff
changeset
|
2497 some_uppercase = 1; |
2393
a35d2c5cbb3b
(Freplace_match): Clean up criterion about converting case.
Richard M. Stallman <rms@gnu.org>
parents:
1926
diff
changeset
|
2498 if (SYNTAX (prevc) != Sword) |
6679
490b7e2db978
(Freplace_match): Don't capitalize unless all matched words are capitalized.
Karl Heuer <kwzh@gnu.org>
parents:
6543
diff
changeset
|
2499 ; |
2393
a35d2c5cbb3b
(Freplace_match): Clean up criterion about converting case.
Richard M. Stallman <rms@gnu.org>
parents:
1926
diff
changeset
|
2500 else |
603 | 2501 some_multiletter_word = 1; |
2502 } | |
8526
2b7b23059f1b
(Freplace_match): Treat caseless initial like a lowercase initial.
Richard M. Stallman <rms@gnu.org>
parents:
7891
diff
changeset
|
2503 else |
2b7b23059f1b
(Freplace_match): Treat caseless initial like a lowercase initial.
Richard M. Stallman <rms@gnu.org>
parents:
7891
diff
changeset
|
2504 { |
2b7b23059f1b
(Freplace_match): Treat caseless initial like a lowercase initial.
Richard M. Stallman <rms@gnu.org>
parents:
7891
diff
changeset
|
2505 /* If the initial is a caseless word constituent, |
2b7b23059f1b
(Freplace_match): Treat caseless initial like a lowercase initial.
Richard M. Stallman <rms@gnu.org>
parents:
7891
diff
changeset
|
2506 treat that like a lowercase initial. */ |
2b7b23059f1b
(Freplace_match): Treat caseless initial like a lowercase initial.
Richard M. Stallman <rms@gnu.org>
parents:
7891
diff
changeset
|
2507 if (SYNTAX (prevc) != Sword) |
2b7b23059f1b
(Freplace_match): Treat caseless initial like a lowercase initial.
Richard M. Stallman <rms@gnu.org>
parents:
7891
diff
changeset
|
2508 some_nonuppercase_initial = 1; |
2b7b23059f1b
(Freplace_match): Treat caseless initial like a lowercase initial.
Richard M. Stallman <rms@gnu.org>
parents:
7891
diff
changeset
|
2509 } |
603 | 2510 |
2511 prevc = c; | |
2512 } | |
2513 | |
2393
a35d2c5cbb3b
(Freplace_match): Clean up criterion about converting case.
Richard M. Stallman <rms@gnu.org>
parents:
1926
diff
changeset
|
2514 /* Convert to all caps if the old text is all caps |
a35d2c5cbb3b
(Freplace_match): Clean up criterion about converting case.
Richard M. Stallman <rms@gnu.org>
parents:
1926
diff
changeset
|
2515 and has at least one multiletter word. */ |
a35d2c5cbb3b
(Freplace_match): Clean up criterion about converting case.
Richard M. Stallman <rms@gnu.org>
parents:
1926
diff
changeset
|
2516 if (! some_lowercase && some_multiletter_word) |
a35d2c5cbb3b
(Freplace_match): Clean up criterion about converting case.
Richard M. Stallman <rms@gnu.org>
parents:
1926
diff
changeset
|
2517 case_action = all_caps; |
6679
490b7e2db978
(Freplace_match): Don't capitalize unless all matched words are capitalized.
Karl Heuer <kwzh@gnu.org>
parents:
6543
diff
changeset
|
2518 /* Capitalize each word, if the old text has all capitalized words. */ |
8526
2b7b23059f1b
(Freplace_match): Treat caseless initial like a lowercase initial.
Richard M. Stallman <rms@gnu.org>
parents:
7891
diff
changeset
|
2519 else if (!some_nonuppercase_initial && some_multiletter_word) |
603 | 2520 case_action = cap_initial; |
8526
2b7b23059f1b
(Freplace_match): Treat caseless initial like a lowercase initial.
Richard M. Stallman <rms@gnu.org>
parents:
7891
diff
changeset
|
2521 else if (!some_nonuppercase_initial && some_uppercase) |
7674
947d24fefd9e
(Freplace_match): Improve capitalization heuristics.
Karl Heuer <kwzh@gnu.org>
parents:
7673
diff
changeset
|
2522 /* Should x -> yz, operating on X, give Yz or YZ? |
947d24fefd9e
(Freplace_match): Improve capitalization heuristics.
Karl Heuer <kwzh@gnu.org>
parents:
7673
diff
changeset
|
2523 We'll assume the latter. */ |
947d24fefd9e
(Freplace_match): Improve capitalization heuristics.
Karl Heuer <kwzh@gnu.org>
parents:
7673
diff
changeset
|
2524 case_action = all_caps; |
2393
a35d2c5cbb3b
(Freplace_match): Clean up criterion about converting case.
Richard M. Stallman <rms@gnu.org>
parents:
1926
diff
changeset
|
2525 else |
a35d2c5cbb3b
(Freplace_match): Clean up criterion about converting case.
Richard M. Stallman <rms@gnu.org>
parents:
1926
diff
changeset
|
2526 case_action = nochange; |
603 | 2527 } |
2528 | |
9029
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2529 /* Do replacement in a string. */ |
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2530 if (!NILP (string)) |
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2531 { |
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2532 Lisp_Object before, after; |
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2533 |
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2534 before = Fsubstring (string, make_number (0), |
12807
34d269b30df1
(Freplace_match): New arg SUBEXP.
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
2535 make_number (search_regs.start[sub])); |
34d269b30df1
(Freplace_match): New arg SUBEXP.
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
2536 after = Fsubstring (string, make_number (search_regs.end[sub]), Qnil); |
9029
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2537 |
17225
739e41eed8b6
(Freplace_match): Give error if
Richard M. Stallman <rms@gnu.org>
parents:
17102
diff
changeset
|
2538 /* Substitute parts of the match into NEWTEXT |
739e41eed8b6
(Freplace_match): Give error if
Richard M. Stallman <rms@gnu.org>
parents:
17102
diff
changeset
|
2539 if desired. */ |
9029
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2540 if (NILP (literal)) |
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2541 { |
103001
6b3176775d00
* search.c: Use EMACS_INT for buffer positions. Add prototypes.
Andreas Schwab <schwab@linux-m68k.org>
parents:
102999
diff
changeset
|
2542 EMACS_INT lastpos = 0; |
6b3176775d00
* search.c: Use EMACS_INT for buffer positions. Add prototypes.
Andreas Schwab <schwab@linux-m68k.org>
parents:
102999
diff
changeset
|
2543 EMACS_INT lastpos_byte = 0; |
9029
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2544 /* We build up the substituted string in ACCUM. */ |
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2545 Lisp_Object accum; |
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2546 Lisp_Object middle; |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
45263
diff
changeset
|
2547 int length = SBYTES (newtext); |
9029
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2548 |
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2549 accum = Qnil; |
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2550 |
22533
6eae236a4f01
(Freplace_match): Work by chars, not by bytes,
Karl Heuer <kwzh@gnu.org>
parents:
22221
diff
changeset
|
2551 for (pos_byte = 0, pos = 0; pos_byte < length;) |
9029
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2552 { |
110507
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
2553 EMACS_INT substart = -1; |
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
2554 EMACS_INT subend = 0; |
12148
a1c38b9b0f73
(Freplace_match): Do the right thing with backslash.
Karl Heuer <kwzh@gnu.org>
parents:
12147
diff
changeset
|
2555 int delbackslash = 0; |
9029
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2556 |
20588
138c95482e6b
(search_buffer): Handle bytes vs chars in non-RE case.
Richard M. Stallman <rms@gnu.org>
parents:
20547
diff
changeset
|
2557 FETCH_STRING_CHAR_ADVANCE (c, newtext, pos, pos_byte); |
138c95482e6b
(search_buffer): Handle bytes vs chars in non-RE case.
Richard M. Stallman <rms@gnu.org>
parents:
20547
diff
changeset
|
2558 |
9029
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2559 if (c == '\\') |
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2560 { |
20588
138c95482e6b
(search_buffer): Handle bytes vs chars in non-RE case.
Richard M. Stallman <rms@gnu.org>
parents:
20547
diff
changeset
|
2561 FETCH_STRING_CHAR_ADVANCE (c, newtext, pos, pos_byte); |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48528
diff
changeset
|
2562 |
9029
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2563 if (c == '&') |
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2564 { |
12807
34d269b30df1
(Freplace_match): New arg SUBEXP.
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
2565 substart = search_regs.start[sub]; |
34d269b30df1
(Freplace_match): New arg SUBEXP.
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
2566 subend = search_regs.end[sub]; |
9029
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2567 } |
53719
824b5057fbca
(Freplace_match): Handle nonexistent back-references properly.
Richard M. Stallman <rms@gnu.org>
parents:
53587
diff
changeset
|
2568 else if (c >= '1' && c <= '9') |
9029
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2569 { |
53719
824b5057fbca
(Freplace_match): Handle nonexistent back-references properly.
Richard M. Stallman <rms@gnu.org>
parents:
53587
diff
changeset
|
2570 if (search_regs.start[c - '0'] >= 0 |
824b5057fbca
(Freplace_match): Handle nonexistent back-references properly.
Richard M. Stallman <rms@gnu.org>
parents:
53587
diff
changeset
|
2571 && c <= search_regs.num_regs + '0') |
9029
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2572 { |
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2573 substart = search_regs.start[c - '0']; |
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2574 subend = search_regs.end[c - '0']; |
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2575 } |
53719
824b5057fbca
(Freplace_match): Handle nonexistent back-references properly.
Richard M. Stallman <rms@gnu.org>
parents:
53587
diff
changeset
|
2576 else |
824b5057fbca
(Freplace_match): Handle nonexistent back-references properly.
Richard M. Stallman <rms@gnu.org>
parents:
53587
diff
changeset
|
2577 { |
824b5057fbca
(Freplace_match): Handle nonexistent back-references properly.
Richard M. Stallman <rms@gnu.org>
parents:
53587
diff
changeset
|
2578 /* If that subexp did not match, |
824b5057fbca
(Freplace_match): Handle nonexistent back-references properly.
Richard M. Stallman <rms@gnu.org>
parents:
53587
diff
changeset
|
2579 replace \\N with nothing. */ |
824b5057fbca
(Freplace_match): Handle nonexistent back-references properly.
Richard M. Stallman <rms@gnu.org>
parents:
53587
diff
changeset
|
2580 substart = 0; |
824b5057fbca
(Freplace_match): Handle nonexistent back-references properly.
Richard M. Stallman <rms@gnu.org>
parents:
53587
diff
changeset
|
2581 subend = 0; |
824b5057fbca
(Freplace_match): Handle nonexistent back-references properly.
Richard M. Stallman <rms@gnu.org>
parents:
53587
diff
changeset
|
2582 } |
9029
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2583 } |
12148
a1c38b9b0f73
(Freplace_match): Do the right thing with backslash.
Karl Heuer <kwzh@gnu.org>
parents:
12147
diff
changeset
|
2584 else if (c == '\\') |
a1c38b9b0f73
(Freplace_match): Do the right thing with backslash.
Karl Heuer <kwzh@gnu.org>
parents:
12147
diff
changeset
|
2585 delbackslash = 1; |
17225
739e41eed8b6
(Freplace_match): Give error if
Richard M. Stallman <rms@gnu.org>
parents:
17102
diff
changeset
|
2586 else |
739e41eed8b6
(Freplace_match): Give error if
Richard M. Stallman <rms@gnu.org>
parents:
17102
diff
changeset
|
2587 error ("Invalid use of `\\' in replacement text"); |
9029
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2588 } |
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2589 if (substart >= 0) |
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2590 { |
21988
8cf3bbc89c3c
(Freplace_match): Fix the loop for copying text
Richard M. Stallman <rms@gnu.org>
parents:
21945
diff
changeset
|
2591 if (pos - 2 != lastpos) |
8cf3bbc89c3c
(Freplace_match): Fix the loop for copying text
Richard M. Stallman <rms@gnu.org>
parents:
21945
diff
changeset
|
2592 middle = substring_both (newtext, lastpos, |
8cf3bbc89c3c
(Freplace_match): Fix the loop for copying text
Richard M. Stallman <rms@gnu.org>
parents:
21945
diff
changeset
|
2593 lastpos_byte, |
8cf3bbc89c3c
(Freplace_match): Fix the loop for copying text
Richard M. Stallman <rms@gnu.org>
parents:
21945
diff
changeset
|
2594 pos - 2, pos_byte - 2); |
9029
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2595 else |
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2596 middle = Qnil; |
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2597 accum = concat3 (accum, middle, |
20588
138c95482e6b
(search_buffer): Handle bytes vs chars in non-RE case.
Richard M. Stallman <rms@gnu.org>
parents:
20547
diff
changeset
|
2598 Fsubstring (string, |
138c95482e6b
(search_buffer): Handle bytes vs chars in non-RE case.
Richard M. Stallman <rms@gnu.org>
parents:
20547
diff
changeset
|
2599 make_number (substart), |
9029
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2600 make_number (subend))); |
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2601 lastpos = pos; |
20588
138c95482e6b
(search_buffer): Handle bytes vs chars in non-RE case.
Richard M. Stallman <rms@gnu.org>
parents:
20547
diff
changeset
|
2602 lastpos_byte = pos_byte; |
9029
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2603 } |
12148
a1c38b9b0f73
(Freplace_match): Do the right thing with backslash.
Karl Heuer <kwzh@gnu.org>
parents:
12147
diff
changeset
|
2604 else if (delbackslash) |
a1c38b9b0f73
(Freplace_match): Do the right thing with backslash.
Karl Heuer <kwzh@gnu.org>
parents:
12147
diff
changeset
|
2605 { |
21988
8cf3bbc89c3c
(Freplace_match): Fix the loop for copying text
Richard M. Stallman <rms@gnu.org>
parents:
21945
diff
changeset
|
2606 middle = substring_both (newtext, lastpos, |
8cf3bbc89c3c
(Freplace_match): Fix the loop for copying text
Richard M. Stallman <rms@gnu.org>
parents:
21945
diff
changeset
|
2607 lastpos_byte, |
8cf3bbc89c3c
(Freplace_match): Fix the loop for copying text
Richard M. Stallman <rms@gnu.org>
parents:
21945
diff
changeset
|
2608 pos - 1, pos_byte - 1); |
20588
138c95482e6b
(search_buffer): Handle bytes vs chars in non-RE case.
Richard M. Stallman <rms@gnu.org>
parents:
20547
diff
changeset
|
2609 |
12148
a1c38b9b0f73
(Freplace_match): Do the right thing with backslash.
Karl Heuer <kwzh@gnu.org>
parents:
12147
diff
changeset
|
2610 accum = concat2 (accum, middle); |
a1c38b9b0f73
(Freplace_match): Do the right thing with backslash.
Karl Heuer <kwzh@gnu.org>
parents:
12147
diff
changeset
|
2611 lastpos = pos; |
20588
138c95482e6b
(search_buffer): Handle bytes vs chars in non-RE case.
Richard M. Stallman <rms@gnu.org>
parents:
20547
diff
changeset
|
2612 lastpos_byte = pos_byte; |
12148
a1c38b9b0f73
(Freplace_match): Do the right thing with backslash.
Karl Heuer <kwzh@gnu.org>
parents:
12147
diff
changeset
|
2613 } |
9029
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2614 } |
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2615 |
21988
8cf3bbc89c3c
(Freplace_match): Fix the loop for copying text
Richard M. Stallman <rms@gnu.org>
parents:
21945
diff
changeset
|
2616 if (pos != lastpos) |
8cf3bbc89c3c
(Freplace_match): Fix the loop for copying text
Richard M. Stallman <rms@gnu.org>
parents:
21945
diff
changeset
|
2617 middle = substring_both (newtext, lastpos, |
8cf3bbc89c3c
(Freplace_match): Fix the loop for copying text
Richard M. Stallman <rms@gnu.org>
parents:
21945
diff
changeset
|
2618 lastpos_byte, |
20588
138c95482e6b
(search_buffer): Handle bytes vs chars in non-RE case.
Richard M. Stallman <rms@gnu.org>
parents:
20547
diff
changeset
|
2619 pos, pos_byte); |
9029
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2620 else |
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2621 middle = Qnil; |
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2622 |
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2623 newtext = concat2 (accum, middle); |
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2624 } |
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2625 |
17225
739e41eed8b6
(Freplace_match): Give error if
Richard M. Stallman <rms@gnu.org>
parents:
17102
diff
changeset
|
2626 /* Do case substitution in NEWTEXT if desired. */ |
9029
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2627 if (case_action == all_caps) |
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2628 newtext = Fupcase (newtext); |
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2629 else if (case_action == cap_initial) |
12092
b932b2ed40f5
(Freplace_match): Calls to upcase_initials and upcase_initials_region changed
Karl Heuer <kwzh@gnu.org>
parents:
12069
diff
changeset
|
2630 newtext = Fupcase_initials (newtext); |
9029
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2631 |
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2632 return concat3 (before, newtext, after); |
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2633 } |
f0d89b62dd27
(Freplace_match): New 4th arg OBJECT can specify string to replace in.
Richard M. Stallman <rms@gnu.org>
parents:
8950
diff
changeset
|
2634 |
39487
b21317213c81
(trivial_regexp_p): Catch \{N,M\} as well.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35831
diff
changeset
|
2635 /* Record point, then move (quietly) to the start of the match. */ |
23790
c1dbb92db43e
(Freplace_match): Set OPOINT clearly for the case
Richard M. Stallman <rms@gnu.org>
parents:
22640
diff
changeset
|
2636 if (PT >= search_regs.end[sub]) |
18077
27a0ced43e7e
(Freplace_match): Use move_if_not_intangible
Richard M. Stallman <rms@gnu.org>
parents:
17463
diff
changeset
|
2637 opoint = PT - ZV; |
23790
c1dbb92db43e
(Freplace_match): Set OPOINT clearly for the case
Richard M. Stallman <rms@gnu.org>
parents:
22640
diff
changeset
|
2638 else if (PT > search_regs.start[sub]) |
c1dbb92db43e
(Freplace_match): Set OPOINT clearly for the case
Richard M. Stallman <rms@gnu.org>
parents:
22640
diff
changeset
|
2639 opoint = search_regs.end[sub] - ZV; |
18077
27a0ced43e7e
(Freplace_match): Use move_if_not_intangible
Richard M. Stallman <rms@gnu.org>
parents:
17463
diff
changeset
|
2640 else |
27a0ced43e7e
(Freplace_match): Use move_if_not_intangible
Richard M. Stallman <rms@gnu.org>
parents:
17463
diff
changeset
|
2641 opoint = PT; |
27a0ced43e7e
(Freplace_match): Use move_if_not_intangible
Richard M. Stallman <rms@gnu.org>
parents:
17463
diff
changeset
|
2642 |
40922
9147103247c9
(Freplace_match): Use replace_range to insert and delete.
Richard M. Stallman <rms@gnu.org>
parents:
40656
diff
changeset
|
2643 /* If we want non-literal replacement, |
9147103247c9
(Freplace_match): Use replace_range to insert and delete.
Richard M. Stallman <rms@gnu.org>
parents:
40656
diff
changeset
|
2644 perform substitution on the replacement string. */ |
9147103247c9
(Freplace_match): Use replace_range to insert and delete.
Richard M. Stallman <rms@gnu.org>
parents:
40656
diff
changeset
|
2645 if (NILP (literal)) |
603 | 2646 { |
110507
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
2647 EMACS_INT length = SBYTES (newtext); |
26982
3527c131b069
(Freplace_match): For nonliteral replacement,
Richard M. Stallman <rms@gnu.org>
parents:
26869
diff
changeset
|
2648 unsigned char *substed; |
110507
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
2649 EMACS_INT substed_alloc_size, substed_len; |
28387
9a8814cc543c
(Freplace_match): Adjust multibyteness of the current
Kenichi Handa <handa@m17n.org>
parents:
27884
diff
changeset
|
2650 int buf_multibyte = !NILP (current_buffer->enable_multibyte_characters); |
9a8814cc543c
(Freplace_match): Adjust multibyteness of the current
Kenichi Handa <handa@m17n.org>
parents:
27884
diff
changeset
|
2651 int str_multibyte = STRING_MULTIBYTE (newtext); |
9a8814cc543c
(Freplace_match): Adjust multibyteness of the current
Kenichi Handa <handa@m17n.org>
parents:
27884
diff
changeset
|
2652 Lisp_Object rev_tbl; |
40922
9147103247c9
(Freplace_match): Use replace_range to insert and delete.
Richard M. Stallman <rms@gnu.org>
parents:
40656
diff
changeset
|
2653 int really_changed = 0; |
28387
9a8814cc543c
(Freplace_match): Adjust multibyteness of the current
Kenichi Handa <handa@m17n.org>
parents:
27884
diff
changeset
|
2654 |
89483 | 2655 rev_tbl = Qnil; |
22533
6eae236a4f01
(Freplace_match): Work by chars, not by bytes,
Karl Heuer <kwzh@gnu.org>
parents:
22221
diff
changeset
|
2656 |
26982
3527c131b069
(Freplace_match): For nonliteral replacement,
Richard M. Stallman <rms@gnu.org>
parents:
26869
diff
changeset
|
2657 substed_alloc_size = length * 2 + 100; |
3527c131b069
(Freplace_match): For nonliteral replacement,
Richard M. Stallman <rms@gnu.org>
parents:
26869
diff
changeset
|
2658 substed = (unsigned char *) xmalloc (substed_alloc_size + 1); |
3527c131b069
(Freplace_match): For nonliteral replacement,
Richard M. Stallman <rms@gnu.org>
parents:
26869
diff
changeset
|
2659 substed_len = 0; |
3527c131b069
(Freplace_match): For nonliteral replacement,
Richard M. Stallman <rms@gnu.org>
parents:
26869
diff
changeset
|
2660 |
28387
9a8814cc543c
(Freplace_match): Adjust multibyteness of the current
Kenichi Handa <handa@m17n.org>
parents:
27884
diff
changeset
|
2661 /* Go thru NEWTEXT, producing the actual text to insert in |
9a8814cc543c
(Freplace_match): Adjust multibyteness of the current
Kenichi Handa <handa@m17n.org>
parents:
27884
diff
changeset
|
2662 SUBSTED while adjusting multibyteness to that of the current |
9a8814cc543c
(Freplace_match): Adjust multibyteness of the current
Kenichi Handa <handa@m17n.org>
parents:
27884
diff
changeset
|
2663 buffer. */ |
603 | 2664 |
22533
6eae236a4f01
(Freplace_match): Work by chars, not by bytes,
Karl Heuer <kwzh@gnu.org>
parents:
22221
diff
changeset
|
2665 for (pos_byte = 0, pos = 0; pos_byte < length;) |
603 | 2666 { |
26982
3527c131b069
(Freplace_match): For nonliteral replacement,
Richard M. Stallman <rms@gnu.org>
parents:
26869
diff
changeset
|
2667 unsigned char str[MAX_MULTIBYTE_LENGTH]; |
109726
64732fa6188a
Use const char* instead of char*.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109637
diff
changeset
|
2668 const unsigned char *add_stuff = NULL; |
110507
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
2669 EMACS_INT add_len = 0; |
26982
3527c131b069
(Freplace_match): For nonliteral replacement,
Richard M. Stallman <rms@gnu.org>
parents:
26869
diff
changeset
|
2670 int idx = -1; |
2655
594a33ffed85
* search.c (Freplace_match): Arrange for markers sitting at the
Jim Blandy <jimb@redhat.com>
parents:
2475
diff
changeset
|
2671 |
28387
9a8814cc543c
(Freplace_match): Adjust multibyteness of the current
Kenichi Handa <handa@m17n.org>
parents:
27884
diff
changeset
|
2672 if (str_multibyte) |
9a8814cc543c
(Freplace_match): Adjust multibyteness of the current
Kenichi Handa <handa@m17n.org>
parents:
27884
diff
changeset
|
2673 { |
29018
2f43c508a9b5
(wordify): Use FETCH_STRING_CHAR_ADVANCE
Kenichi Handa <handa@m17n.org>
parents:
28886
diff
changeset
|
2674 FETCH_STRING_CHAR_ADVANCE_NO_CHECK (c, newtext, pos, pos_byte); |
28387
9a8814cc543c
(Freplace_match): Adjust multibyteness of the current
Kenichi Handa <handa@m17n.org>
parents:
27884
diff
changeset
|
2675 if (!buf_multibyte) |
9a8814cc543c
(Freplace_match): Adjust multibyteness of the current
Kenichi Handa <handa@m17n.org>
parents:
27884
diff
changeset
|
2676 c = multibyte_char_to_unibyte (c, rev_tbl); |
9a8814cc543c
(Freplace_match): Adjust multibyteness of the current
Kenichi Handa <handa@m17n.org>
parents:
27884
diff
changeset
|
2677 } |
9a8814cc543c
(Freplace_match): Adjust multibyteness of the current
Kenichi Handa <handa@m17n.org>
parents:
27884
diff
changeset
|
2678 else |
9a8814cc543c
(Freplace_match): Adjust multibyteness of the current
Kenichi Handa <handa@m17n.org>
parents:
27884
diff
changeset
|
2679 { |
9a8814cc543c
(Freplace_match): Adjust multibyteness of the current
Kenichi Handa <handa@m17n.org>
parents:
27884
diff
changeset
|
2680 /* Note that we don't have to increment POS. */ |
46432
a4697b0a338e
* search.c (wordify): Use SDATA.
Ken Raeburn <raeburn@raeburn.org>
parents:
46370
diff
changeset
|
2681 c = SREF (newtext, pos_byte++); |
28387
9a8814cc543c
(Freplace_match): Adjust multibyteness of the current
Kenichi Handa <handa@m17n.org>
parents:
27884
diff
changeset
|
2682 if (buf_multibyte) |
105661
bac26aa40069
Remove leftover table unibyte_to_multibyte_table.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105401
diff
changeset
|
2683 MAKE_CHAR_MULTIBYTE (c); |
28387
9a8814cc543c
(Freplace_match): Adjust multibyteness of the current
Kenichi Handa <handa@m17n.org>
parents:
27884
diff
changeset
|
2684 } |
22533
6eae236a4f01
(Freplace_match): Work by chars, not by bytes,
Karl Heuer <kwzh@gnu.org>
parents:
22221
diff
changeset
|
2685 |
26982
3527c131b069
(Freplace_match): For nonliteral replacement,
Richard M. Stallman <rms@gnu.org>
parents:
26869
diff
changeset
|
2686 /* Either set ADD_STUFF and ADD_LEN to the text to put in SUBSTED, |
3527c131b069
(Freplace_match): For nonliteral replacement,
Richard M. Stallman <rms@gnu.org>
parents:
26869
diff
changeset
|
2687 or set IDX to a match index, which means put that part |
3527c131b069
(Freplace_match): For nonliteral replacement,
Richard M. Stallman <rms@gnu.org>
parents:
26869
diff
changeset
|
2688 of the buffer text into SUBSTED. */ |
3527c131b069
(Freplace_match): For nonliteral replacement,
Richard M. Stallman <rms@gnu.org>
parents:
26869
diff
changeset
|
2689 |
603 | 2690 if (c == '\\') |
2691 { | |
40922
9147103247c9
(Freplace_match): Use replace_range to insert and delete.
Richard M. Stallman <rms@gnu.org>
parents:
40656
diff
changeset
|
2692 really_changed = 1; |
9147103247c9
(Freplace_match): Use replace_range to insert and delete.
Richard M. Stallman <rms@gnu.org>
parents:
40656
diff
changeset
|
2693 |
28387
9a8814cc543c
(Freplace_match): Adjust multibyteness of the current
Kenichi Handa <handa@m17n.org>
parents:
27884
diff
changeset
|
2694 if (str_multibyte) |
9a8814cc543c
(Freplace_match): Adjust multibyteness of the current
Kenichi Handa <handa@m17n.org>
parents:
27884
diff
changeset
|
2695 { |
29018
2f43c508a9b5
(wordify): Use FETCH_STRING_CHAR_ADVANCE
Kenichi Handa <handa@m17n.org>
parents:
28886
diff
changeset
|
2696 FETCH_STRING_CHAR_ADVANCE_NO_CHECK (c, newtext, |
2f43c508a9b5
(wordify): Use FETCH_STRING_CHAR_ADVANCE
Kenichi Handa <handa@m17n.org>
parents:
28886
diff
changeset
|
2697 pos, pos_byte); |
89213
b0d3fa30523c
(Freplace_match): Check C by ASCII_CHAR_P, not by
Kenichi Handa <handa@m17n.org>
parents:
89130
diff
changeset
|
2698 if (!buf_multibyte && !ASCII_CHAR_P (c)) |
28387
9a8814cc543c
(Freplace_match): Adjust multibyteness of the current
Kenichi Handa <handa@m17n.org>
parents:
27884
diff
changeset
|
2699 c = multibyte_char_to_unibyte (c, rev_tbl); |
9a8814cc543c
(Freplace_match): Adjust multibyteness of the current
Kenichi Handa <handa@m17n.org>
parents:
27884
diff
changeset
|
2700 } |
9a8814cc543c
(Freplace_match): Adjust multibyteness of the current
Kenichi Handa <handa@m17n.org>
parents:
27884
diff
changeset
|
2701 else |
9a8814cc543c
(Freplace_match): Adjust multibyteness of the current
Kenichi Handa <handa@m17n.org>
parents:
27884
diff
changeset
|
2702 { |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
45263
diff
changeset
|
2703 c = SREF (newtext, pos_byte++); |
28387
9a8814cc543c
(Freplace_match): Adjust multibyteness of the current
Kenichi Handa <handa@m17n.org>
parents:
27884
diff
changeset
|
2704 if (buf_multibyte) |
105661
bac26aa40069
Remove leftover table unibyte_to_multibyte_table.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105401
diff
changeset
|
2705 MAKE_CHAR_MULTIBYTE (c); |
28387
9a8814cc543c
(Freplace_match): Adjust multibyteness of the current
Kenichi Handa <handa@m17n.org>
parents:
27884
diff
changeset
|
2706 } |
9a8814cc543c
(Freplace_match): Adjust multibyteness of the current
Kenichi Handa <handa@m17n.org>
parents:
27884
diff
changeset
|
2707 |
603 | 2708 if (c == '&') |
26982
3527c131b069
(Freplace_match): For nonliteral replacement,
Richard M. Stallman <rms@gnu.org>
parents:
26869
diff
changeset
|
2709 idx = sub; |
7856
9687141f6264
(Freplace_match): Be sure not to treat non-digit like digit.
Richard M. Stallman <rms@gnu.org>
parents:
7674
diff
changeset
|
2710 else if (c >= '1' && c <= '9' && c <= search_regs.num_regs + '0') |
603 | 2711 { |
2712 if (search_regs.start[c - '0'] >= 1) | |
26982
3527c131b069
(Freplace_match): For nonliteral replacement,
Richard M. Stallman <rms@gnu.org>
parents:
26869
diff
changeset
|
2713 idx = c - '0'; |
603 | 2714 } |
17225
739e41eed8b6
(Freplace_match): Give error if
Richard M. Stallman <rms@gnu.org>
parents:
17102
diff
changeset
|
2715 else if (c == '\\') |
26982
3527c131b069
(Freplace_match): For nonliteral replacement,
Richard M. Stallman <rms@gnu.org>
parents:
26869
diff
changeset
|
2716 add_len = 1, add_stuff = "\\"; |
603 | 2717 else |
28387
9a8814cc543c
(Freplace_match): Adjust multibyteness of the current
Kenichi Handa <handa@m17n.org>
parents:
27884
diff
changeset
|
2718 { |
9a8814cc543c
(Freplace_match): Adjust multibyteness of the current
Kenichi Handa <handa@m17n.org>
parents:
27884
diff
changeset
|
2719 xfree (substed); |
9a8814cc543c
(Freplace_match): Adjust multibyteness of the current
Kenichi Handa <handa@m17n.org>
parents:
27884
diff
changeset
|
2720 error ("Invalid use of `\\' in replacement text"); |
9a8814cc543c
(Freplace_match): Adjust multibyteness of the current
Kenichi Handa <handa@m17n.org>
parents:
27884
diff
changeset
|
2721 } |
603 | 2722 } |
2723 else | |
26982
3527c131b069
(Freplace_match): For nonliteral replacement,
Richard M. Stallman <rms@gnu.org>
parents:
26869
diff
changeset
|
2724 { |
3527c131b069
(Freplace_match): For nonliteral replacement,
Richard M. Stallman <rms@gnu.org>
parents:
26869
diff
changeset
|
2725 add_len = CHAR_STRING (c, str); |
3527c131b069
(Freplace_match): For nonliteral replacement,
Richard M. Stallman <rms@gnu.org>
parents:
26869
diff
changeset
|
2726 add_stuff = str; |
3527c131b069
(Freplace_match): For nonliteral replacement,
Richard M. Stallman <rms@gnu.org>
parents:
26869
diff
changeset
|
2727 } |
3527c131b069
(Freplace_match): For nonliteral replacement,
Richard M. Stallman <rms@gnu.org>
parents:
26869
diff
changeset
|
2728 |
3527c131b069
(Freplace_match): For nonliteral replacement,
Richard M. Stallman <rms@gnu.org>
parents:
26869
diff
changeset
|
2729 /* If we want to copy part of a previous match, |
3527c131b069
(Freplace_match): For nonliteral replacement,
Richard M. Stallman <rms@gnu.org>
parents:
26869
diff
changeset
|
2730 set up ADD_STUFF and ADD_LEN to point to it. */ |
3527c131b069
(Freplace_match): For nonliteral replacement,
Richard M. Stallman <rms@gnu.org>
parents:
26869
diff
changeset
|
2731 if (idx >= 0) |
3527c131b069
(Freplace_match): For nonliteral replacement,
Richard M. Stallman <rms@gnu.org>
parents:
26869
diff
changeset
|
2732 { |
103001
6b3176775d00
* search.c: Use EMACS_INT for buffer positions. Add prototypes.
Andreas Schwab <schwab@linux-m68k.org>
parents:
102999
diff
changeset
|
2733 EMACS_INT begbyte = CHAR_TO_BYTE (search_regs.start[idx]); |
26982
3527c131b069
(Freplace_match): For nonliteral replacement,
Richard M. Stallman <rms@gnu.org>
parents:
26869
diff
changeset
|
2734 add_len = CHAR_TO_BYTE (search_regs.end[idx]) - begbyte; |
3527c131b069
(Freplace_match): For nonliteral replacement,
Richard M. Stallman <rms@gnu.org>
parents:
26869
diff
changeset
|
2735 if (search_regs.start[idx] < GPT && GPT < search_regs.end[idx]) |
3527c131b069
(Freplace_match): For nonliteral replacement,
Richard M. Stallman <rms@gnu.org>
parents:
26869
diff
changeset
|
2736 move_gap (search_regs.start[idx]); |
3527c131b069
(Freplace_match): For nonliteral replacement,
Richard M. Stallman <rms@gnu.org>
parents:
26869
diff
changeset
|
2737 add_stuff = BYTE_POS_ADDR (begbyte); |
3527c131b069
(Freplace_match): For nonliteral replacement,
Richard M. Stallman <rms@gnu.org>
parents:
26869
diff
changeset
|
2738 } |
3527c131b069
(Freplace_match): For nonliteral replacement,
Richard M. Stallman <rms@gnu.org>
parents:
26869
diff
changeset
|
2739 |
3527c131b069
(Freplace_match): For nonliteral replacement,
Richard M. Stallman <rms@gnu.org>
parents:
26869
diff
changeset
|
2740 /* Now the stuff we want to add to SUBSTED |
3527c131b069
(Freplace_match): For nonliteral replacement,
Richard M. Stallman <rms@gnu.org>
parents:
26869
diff
changeset
|
2741 is invariably ADD_LEN bytes starting at ADD_STUFF. */ |
3527c131b069
(Freplace_match): For nonliteral replacement,
Richard M. Stallman <rms@gnu.org>
parents:
26869
diff
changeset
|
2742 |
3527c131b069
(Freplace_match): For nonliteral replacement,
Richard M. Stallman <rms@gnu.org>
parents:
26869
diff
changeset
|
2743 /* Make sure SUBSTED is big enough. */ |
3527c131b069
(Freplace_match): For nonliteral replacement,
Richard M. Stallman <rms@gnu.org>
parents:
26869
diff
changeset
|
2744 if (substed_len + add_len >= substed_alloc_size) |
3527c131b069
(Freplace_match): For nonliteral replacement,
Richard M. Stallman <rms@gnu.org>
parents:
26869
diff
changeset
|
2745 { |
3527c131b069
(Freplace_match): For nonliteral replacement,
Richard M. Stallman <rms@gnu.org>
parents:
26869
diff
changeset
|
2746 substed_alloc_size = substed_len + add_len + 500; |
3527c131b069
(Freplace_match): For nonliteral replacement,
Richard M. Stallman <rms@gnu.org>
parents:
26869
diff
changeset
|
2747 substed = (unsigned char *) xrealloc (substed, |
3527c131b069
(Freplace_match): For nonliteral replacement,
Richard M. Stallman <rms@gnu.org>
parents:
26869
diff
changeset
|
2748 substed_alloc_size + 1); |
3527c131b069
(Freplace_match): For nonliteral replacement,
Richard M. Stallman <rms@gnu.org>
parents:
26869
diff
changeset
|
2749 } |
3527c131b069
(Freplace_match): For nonliteral replacement,
Richard M. Stallman <rms@gnu.org>
parents:
26869
diff
changeset
|
2750 |
3527c131b069
(Freplace_match): For nonliteral replacement,
Richard M. Stallman <rms@gnu.org>
parents:
26869
diff
changeset
|
2751 /* Now add to the end of SUBSTED. */ |
28886
3f60536745bd
(Freplace_match): Handle case of `\N' in the
Gerd Moellmann <gerd@gnu.org>
parents:
28507
diff
changeset
|
2752 if (add_stuff) |
3f60536745bd
(Freplace_match): Handle case of `\N' in the
Gerd Moellmann <gerd@gnu.org>
parents:
28507
diff
changeset
|
2753 { |
109165
750db9f3e6d8
Replace bcopy, bzero, bcmp by memcpy, memmove, memset, memcmp
Andreas Schwab <schwab@linux-m68k.org>
parents:
109126
diff
changeset
|
2754 memcpy (substed + substed_len, add_stuff, add_len); |
28886
3f60536745bd
(Freplace_match): Handle case of `\N' in the
Gerd Moellmann <gerd@gnu.org>
parents:
28507
diff
changeset
|
2755 substed_len += add_len; |
3f60536745bd
(Freplace_match): Handle case of `\N' in the
Gerd Moellmann <gerd@gnu.org>
parents:
28507
diff
changeset
|
2756 } |
603 | 2757 } |
26982
3527c131b069
(Freplace_match): For nonliteral replacement,
Richard M. Stallman <rms@gnu.org>
parents:
26869
diff
changeset
|
2758 |
40922
9147103247c9
(Freplace_match): Use replace_range to insert and delete.
Richard M. Stallman <rms@gnu.org>
parents:
40656
diff
changeset
|
2759 if (really_changed) |
53587
6feb1f3f7a9b
(Freplace_match): Use make_multibyte_string or
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
2760 { |
6feb1f3f7a9b
(Freplace_match): Use make_multibyte_string or
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
2761 if (buf_multibyte) |
6feb1f3f7a9b
(Freplace_match): Use make_multibyte_string or
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
2762 { |
110507
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
2763 EMACS_INT nchars = |
875202ac5b45
Fix use of int instead of EMACS_INT in search.c and region-cache.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109726
diff
changeset
|
2764 multibyte_chars_in_text (substed, substed_len); |
53587
6feb1f3f7a9b
(Freplace_match): Use make_multibyte_string or
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
2765 |
6feb1f3f7a9b
(Freplace_match): Use make_multibyte_string or
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
2766 newtext = make_multibyte_string (substed, nchars, substed_len); |
6feb1f3f7a9b
(Freplace_match): Use make_multibyte_string or
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
2767 } |
6feb1f3f7a9b
(Freplace_match): Use make_multibyte_string or
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
2768 else |
6feb1f3f7a9b
(Freplace_match): Use make_multibyte_string or
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
2769 newtext = make_unibyte_string (substed, substed_len); |
6feb1f3f7a9b
(Freplace_match): Use make_multibyte_string or
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
2770 } |
26982
3527c131b069
(Freplace_match): For nonliteral replacement,
Richard M. Stallman <rms@gnu.org>
parents:
26869
diff
changeset
|
2771 xfree (substed); |
603 | 2772 } |
2773 | |
40922
9147103247c9
(Freplace_match): Use replace_range to insert and delete.
Richard M. Stallman <rms@gnu.org>
parents:
40656
diff
changeset
|
2774 /* Replace the old text with the new in the cleanest possible way. */ |
9147103247c9
(Freplace_match): Use replace_range to insert and delete.
Richard M. Stallman <rms@gnu.org>
parents:
40656
diff
changeset
|
2775 replace_range (search_regs.start[sub], search_regs.end[sub], |
9147103247c9
(Freplace_match): Use replace_range to insert and delete.
Richard M. Stallman <rms@gnu.org>
parents:
40656
diff
changeset
|
2776 newtext, 1, 0, 1); |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
45263
diff
changeset
|
2777 newpoint = search_regs.start[sub] + SCHARS (newtext); |
603 | 2778 |
2779 if (case_action == all_caps) | |
40922
9147103247c9
(Freplace_match): Use replace_range to insert and delete.
Richard M. Stallman <rms@gnu.org>
parents:
40656
diff
changeset
|
2780 Fupcase_region (make_number (search_regs.start[sub]), |
9147103247c9
(Freplace_match): Use replace_range to insert and delete.
Richard M. Stallman <rms@gnu.org>
parents:
40656
diff
changeset
|
2781 make_number (newpoint)); |
603 | 2782 else if (case_action == cap_initial) |
40922
9147103247c9
(Freplace_match): Use replace_range to insert and delete.
Richard M. Stallman <rms@gnu.org>
parents:
40656
diff
changeset
|
2783 Fupcase_initials_region (make_number (search_regs.start[sub]), |
9147103247c9
(Freplace_match): Use replace_range to insert and delete.
Richard M. Stallman <rms@gnu.org>
parents:
40656
diff
changeset
|
2784 make_number (newpoint)); |
18081
300068b4fcef
(Freplace_match): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
18077
diff
changeset
|
2785 |
47686
fc66469fe069
(Freplace_match): Adjust match data for the substitution
Richard M. Stallman <rms@gnu.org>
parents:
46474
diff
changeset
|
2786 /* Adjust search data for this change. */ |
fc66469fe069
(Freplace_match): Adjust match data for the substitution
Richard M. Stallman <rms@gnu.org>
parents:
46474
diff
changeset
|
2787 { |
103001
6b3176775d00
* search.c: Use EMACS_INT for buffer positions. Add prototypes.
Andreas Schwab <schwab@linux-m68k.org>
parents:
102999
diff
changeset
|
2788 EMACS_INT oldend = search_regs.end[sub]; |
6b3176775d00
* search.c: Use EMACS_INT for buffer positions. Add prototypes.
Andreas Schwab <schwab@linux-m68k.org>
parents:
102999
diff
changeset
|
2789 EMACS_INT oldstart = search_regs.start[sub]; |
6b3176775d00
* search.c: Use EMACS_INT for buffer positions. Add prototypes.
Andreas Schwab <schwab@linux-m68k.org>
parents:
102999
diff
changeset
|
2790 EMACS_INT change = newpoint - search_regs.end[sub]; |
47686
fc66469fe069
(Freplace_match): Adjust match data for the substitution
Richard M. Stallman <rms@gnu.org>
parents:
46474
diff
changeset
|
2791 int i; |
fc66469fe069
(Freplace_match): Adjust match data for the substitution
Richard M. Stallman <rms@gnu.org>
parents:
46474
diff
changeset
|
2792 |
fc66469fe069
(Freplace_match): Adjust match data for the substitution
Richard M. Stallman <rms@gnu.org>
parents:
46474
diff
changeset
|
2793 for (i = 0; i < search_regs.num_regs; i++) |
fc66469fe069
(Freplace_match): Adjust match data for the substitution
Richard M. Stallman <rms@gnu.org>
parents:
46474
diff
changeset
|
2794 { |
56224
17e2d4a894aa
(Freplace_match): Adjust the match-data more
David Kastrup <dak@gnu.org>
parents:
56175
diff
changeset
|
2795 if (search_regs.start[i] >= oldend) |
47686
fc66469fe069
(Freplace_match): Adjust match data for the substitution
Richard M. Stallman <rms@gnu.org>
parents:
46474
diff
changeset
|
2796 search_regs.start[i] += change; |
56224
17e2d4a894aa
(Freplace_match): Adjust the match-data more
David Kastrup <dak@gnu.org>
parents:
56175
diff
changeset
|
2797 else if (search_regs.start[i] > oldstart) |
17e2d4a894aa
(Freplace_match): Adjust the match-data more
David Kastrup <dak@gnu.org>
parents:
56175
diff
changeset
|
2798 search_regs.start[i] = oldstart; |
17e2d4a894aa
(Freplace_match): Adjust the match-data more
David Kastrup <dak@gnu.org>
parents:
56175
diff
changeset
|
2799 if (search_regs.end[i] >= oldend) |
47686
fc66469fe069
(Freplace_match): Adjust match data for the substitution
Richard M. Stallman <rms@gnu.org>
parents:
46474
diff
changeset
|
2800 search_regs.end[i] += change; |
56224
17e2d4a894aa
(Freplace_match): Adjust the match-data more
David Kastrup <dak@gnu.org>
parents:
56175
diff
changeset
|
2801 else if (search_regs.end[i] > oldstart) |
17e2d4a894aa
(Freplace_match): Adjust the match-data more
David Kastrup <dak@gnu.org>
parents:
56175
diff
changeset
|
2802 search_regs.end[i] = oldstart; |
47686
fc66469fe069
(Freplace_match): Adjust match data for the substitution
Richard M. Stallman <rms@gnu.org>
parents:
46474
diff
changeset
|
2803 } |
fc66469fe069
(Freplace_match): Adjust match data for the substitution
Richard M. Stallman <rms@gnu.org>
parents:
46474
diff
changeset
|
2804 } |
fc66469fe069
(Freplace_match): Adjust match data for the substitution
Richard M. Stallman <rms@gnu.org>
parents:
46474
diff
changeset
|
2805 |
18077
27a0ced43e7e
(Freplace_match): Use move_if_not_intangible
Richard M. Stallman <rms@gnu.org>
parents:
17463
diff
changeset
|
2806 /* Put point back where it was in the text. */ |
18124
6f2c80d2425a
(Freplace_match): If opoint is 0, that's relative to ZV.
Richard M. Stallman <rms@gnu.org>
parents:
18112
diff
changeset
|
2807 if (opoint <= 0) |
20545
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
2808 TEMP_SET_PT (opoint + ZV); |
18077
27a0ced43e7e
(Freplace_match): Use move_if_not_intangible
Richard M. Stallman <rms@gnu.org>
parents:
17463
diff
changeset
|
2809 else |
20545
c20c92ff4055
(looking_at_1): Use bytepos to call re_search_2.
Richard M. Stallman <rms@gnu.org>
parents:
20347
diff
changeset
|
2810 TEMP_SET_PT (opoint); |
18077
27a0ced43e7e
(Freplace_match): Use move_if_not_intangible
Richard M. Stallman <rms@gnu.org>
parents:
17463
diff
changeset
|
2811 |
27a0ced43e7e
(Freplace_match): Use move_if_not_intangible
Richard M. Stallman <rms@gnu.org>
parents:
17463
diff
changeset
|
2812 /* Now move point "officially" to the start of the inserted replacement. */ |
18081
300068b4fcef
(Freplace_match): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
18077
diff
changeset
|
2813 move_if_not_intangible (newpoint); |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48528
diff
changeset
|
2814 |
603 | 2815 return Qnil; |
2816 } | |
2817 | |
2818 static Lisp_Object | |
109126
aec1143e8d85
Convert (most) functions in src to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109100
diff
changeset
|
2819 match_limit (Lisp_Object num, int beginningp) |
603 | 2820 { |
2821 register int n; | |
2822 | |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40269
diff
changeset
|
2823 CHECK_NUMBER (num); |
603 | 2824 n = XINT (num); |
56175
b53351ef3125
(match_limit): Cleaner err msg when no match data available.
Richard M. Stallman <rms@gnu.org>
parents:
56022
diff
changeset
|
2825 if (n < 0) |
56294
aaa6a4ecea38
(match_limit, Fmatch_data, Fset_match_data): YAILOM.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56276
diff
changeset
|
2826 args_out_of_range (num, make_number (0)); |
56175
b53351ef3125
(match_limit): Cleaner err msg when no match data available.
Richard M. Stallman <rms@gnu.org>
parents:
56022
diff
changeset
|
2827 if (search_regs.num_regs <= 0) |
b53351ef3125
(match_limit): Cleaner err msg when no match data available.
Richard M. Stallman <rms@gnu.org>
parents:
56022
diff
changeset
|
2828 error ("No match data, because no search succeeded"); |
56022
e63446aad5a3
(match_limit): Don't flag an error if match-data
David Kastrup <dak@gnu.org>
parents:
55689
diff
changeset
|
2829 if (n >= search_regs.num_regs |
621 | 2830 || search_regs.start[n] < 0) |
603 | 2831 return Qnil; |
2832 return (make_number ((beginningp) ? search_regs.start[n] | |
2833 : search_regs.end[n])); | |
2834 } | |
2835 | |
2836 DEFUN ("match-beginning", Fmatch_beginning, Smatch_beginning, 1, 1, 0, | |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2837 doc: /* Return position of start of text matched by last search. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2838 SUBEXP, a number, specifies which parenthesized expression in the last |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2839 regexp. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2840 Value is nil if SUBEXPth pair didn't match, or there were less than |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2841 SUBEXP pairs. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2842 Zero means the entire text matched by the whole regexp or whole string. */) |
109179
8cfee7d2955f
Convert DEFUNs to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109165
diff
changeset
|
2843 (Lisp_Object subexp) |
603 | 2844 { |
14086
a410808fda15
(Fmatch_end, Fregexp_quote): Harmonize arguments with documentation.
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2845 return match_limit (subexp, 1); |
603 | 2846 } |
2847 | |
2848 DEFUN ("match-end", Fmatch_end, Smatch_end, 1, 1, 0, | |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2849 doc: /* Return position of end of text matched by last search. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2850 SUBEXP, a number, specifies which parenthesized expression in the last |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2851 regexp. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2852 Value is nil if SUBEXPth pair didn't match, or there were less than |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2853 SUBEXP pairs. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2854 Zero means the entire text matched by the whole regexp or whole string. */) |
109179
8cfee7d2955f
Convert DEFUNs to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109165
diff
changeset
|
2855 (Lisp_Object subexp) |
603 | 2856 { |
14086
a410808fda15
(Fmatch_end, Fregexp_quote): Harmonize arguments with documentation.
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2857 return match_limit (subexp, 0); |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48528
diff
changeset
|
2858 } |
603 | 2859 |
63145
73d9b884e8c8
(Fmatch_data): Add optional RESEAT arg. Unchain markers
Kim F. Storm <storm@cua.dk>
parents:
61682
diff
changeset
|
2860 DEFUN ("match-data", Fmatch_data, Smatch_data, 0, 3, 0, |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2861 doc: /* Return a list containing all info on what the last search matched. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2862 Element 2N is `(match-beginning N)'; element 2N + 1 is `(match-end N)'. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2863 All the elements are markers or nil (nil if the Nth pair didn't match) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2864 if the last match was on a buffer; integers or nil if a string was matched. |
102978
ff07912acca7
(match-data): Refer to `set-match-data' rather than `store-match-data'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
101966
diff
changeset
|
2865 Use `set-match-data' to reinstate the data in this list. |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2866 |
56224
17e2d4a894aa
(Freplace_match): Adjust the match-data more
David Kastrup <dak@gnu.org>
parents:
56175
diff
changeset
|
2867 If INTEGERS (the optional first argument) is non-nil, always use |
17e2d4a894aa
(Freplace_match): Adjust the match-data more
David Kastrup <dak@gnu.org>
parents:
56175
diff
changeset
|
2868 integers \(rather than markers) to represent buffer positions. In |
17e2d4a894aa
(Freplace_match): Adjust the match-data more
David Kastrup <dak@gnu.org>
parents:
56175
diff
changeset
|
2869 this case, and if the last match was in a buffer, the buffer will get |
17e2d4a894aa
(Freplace_match): Adjust the match-data more
David Kastrup <dak@gnu.org>
parents:
56175
diff
changeset
|
2870 stored as one additional element at the end of the list. |
17e2d4a894aa
(Freplace_match): Adjust the match-data more
David Kastrup <dak@gnu.org>
parents:
56175
diff
changeset
|
2871 |
63145
73d9b884e8c8
(Fmatch_data): Add optional RESEAT arg. Unchain markers
Kim F. Storm <storm@cua.dk>
parents:
61682
diff
changeset
|
2872 If REUSE is a list, reuse it as part of the value. If REUSE is long |
73d9b884e8c8
(Fmatch_data): Add optional RESEAT arg. Unchain markers
Kim F. Storm <storm@cua.dk>
parents:
61682
diff
changeset
|
2873 enough to hold all the values, and if INTEGERS is non-nil, no consing |
73d9b884e8c8
(Fmatch_data): Add optional RESEAT arg. Unchain markers
Kim F. Storm <storm@cua.dk>
parents:
61682
diff
changeset
|
2874 is done. |
73d9b884e8c8
(Fmatch_data): Add optional RESEAT arg. Unchain markers
Kim F. Storm <storm@cua.dk>
parents:
61682
diff
changeset
|
2875 |
73d9b884e8c8
(Fmatch_data): Add optional RESEAT arg. Unchain markers
Kim F. Storm <storm@cua.dk>
parents:
61682
diff
changeset
|
2876 If optional third arg RESEAT is non-nil, any previous markers on the |
73d9b884e8c8
(Fmatch_data): Add optional RESEAT arg. Unchain markers
Kim F. Storm <storm@cua.dk>
parents:
61682
diff
changeset
|
2877 REUSE list will be modified to point to nowhere. |
73d9b884e8c8
(Fmatch_data): Add optional RESEAT arg. Unchain markers
Kim F. Storm <storm@cua.dk>
parents:
61682
diff
changeset
|
2878 |
49761
3d562e7ebf97
(Fmatch_data): Doc fix. Explicitly state that
Kim F. Storm <storm@cua.dk>
parents:
49600
diff
changeset
|
2879 Return value is undefined if the last search failed. */) |
109179
8cfee7d2955f
Convert DEFUNs to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109165
diff
changeset
|
2880 (Lisp_Object integers, Lisp_Object reuse, Lisp_Object reseat) |
603 | 2881 { |
16724
4b1fb372a4fe
(Fmatch_data): New args INTEGERS and REUSE.
Richard M. Stallman <rms@gnu.org>
parents:
16275
diff
changeset
|
2882 Lisp_Object tail, prev; |
621 | 2883 Lisp_Object *data; |
603 | 2884 int i, len; |
2885 | |
63145
73d9b884e8c8
(Fmatch_data): Add optional RESEAT arg. Unchain markers
Kim F. Storm <storm@cua.dk>
parents:
61682
diff
changeset
|
2886 if (!NILP (reseat)) |
73d9b884e8c8
(Fmatch_data): Add optional RESEAT arg. Unchain markers
Kim F. Storm <storm@cua.dk>
parents:
61682
diff
changeset
|
2887 for (tail = reuse; CONSP (tail); tail = XCDR (tail)) |
73d9b884e8c8
(Fmatch_data): Add optional RESEAT arg. Unchain markers
Kim F. Storm <storm@cua.dk>
parents:
61682
diff
changeset
|
2888 if (MARKERP (XCAR (tail))) |
73d9b884e8c8
(Fmatch_data): Add optional RESEAT arg. Unchain markers
Kim F. Storm <storm@cua.dk>
parents:
61682
diff
changeset
|
2889 { |
63666
e0dd6fa42c85
(Fmatch_data): Remove evaporate option.
Kim F. Storm <storm@cua.dk>
parents:
63152
diff
changeset
|
2890 unchain_marker (XMARKER (XCAR (tail))); |
63145
73d9b884e8c8
(Fmatch_data): Add optional RESEAT arg. Unchain markers
Kim F. Storm <storm@cua.dk>
parents:
61682
diff
changeset
|
2891 XSETCAR (tail, Qnil); |
73d9b884e8c8
(Fmatch_data): Add optional RESEAT arg. Unchain markers
Kim F. Storm <storm@cua.dk>
parents:
61682
diff
changeset
|
2892 } |
73d9b884e8c8
(Fmatch_data): Add optional RESEAT arg. Unchain markers
Kim F. Storm <storm@cua.dk>
parents:
61682
diff
changeset
|
2893 |
727 | 2894 if (NILP (last_thing_searched)) |
15667
9531c03134b6
(Fmatch_data): If no matching done yet, return Qnil.
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
2895 return Qnil; |
727 | 2896 |
31829
43566b0aec59
Avoid some more compiler warnings.
Gerd Moellmann <gerd@gnu.org>
parents:
31486
diff
changeset
|
2897 prev = Qnil; |
43566b0aec59
Avoid some more compiler warnings.
Gerd Moellmann <gerd@gnu.org>
parents:
31486
diff
changeset
|
2898 |
56224
17e2d4a894aa
(Freplace_match): Adjust the match-data more
David Kastrup <dak@gnu.org>
parents:
56175
diff
changeset
|
2899 data = (Lisp_Object *) alloca ((2 * search_regs.num_regs + 1) |
621 | 2900 * sizeof (Lisp_Object)); |
2901 | |
56224
17e2d4a894aa
(Freplace_match): Adjust the match-data more
David Kastrup <dak@gnu.org>
parents:
56175
diff
changeset
|
2902 len = 0; |
621 | 2903 for (i = 0; i < search_regs.num_regs; i++) |
603 | 2904 { |
2905 int start = search_regs.start[i]; | |
2906 if (start >= 0) | |
2907 { | |
16724
4b1fb372a4fe
(Fmatch_data): New args INTEGERS and REUSE.
Richard M. Stallman <rms@gnu.org>
parents:
16275
diff
changeset
|
2908 if (EQ (last_thing_searched, Qt) |
4b1fb372a4fe
(Fmatch_data): New args INTEGERS and REUSE.
Richard M. Stallman <rms@gnu.org>
parents:
16275
diff
changeset
|
2909 || ! NILP (integers)) |
603 | 2910 { |
9319
7969182b6cc6
(skip_chars, Fmatch_data, Fstore_match_data): Don't use XFASTINT as an lvalue.
Karl Heuer <kwzh@gnu.org>
parents:
9278
diff
changeset
|
2911 XSETFASTINT (data[2 * i], start); |
7969182b6cc6
(skip_chars, Fmatch_data, Fstore_match_data): Don't use XFASTINT as an lvalue.
Karl Heuer <kwzh@gnu.org>
parents:
9278
diff
changeset
|
2912 XSETFASTINT (data[2 * i + 1], search_regs.end[i]); |
603 | 2913 } |
9113
766b6288e0f2
(Fmatch_data, Fstore_match_data): Use type test macros.
Karl Heuer <kwzh@gnu.org>
parents:
9029
diff
changeset
|
2914 else if (BUFFERP (last_thing_searched)) |
603 | 2915 { |
2916 data[2 * i] = Fmake_marker (); | |
727 | 2917 Fset_marker (data[2 * i], |
2918 make_number (start), | |
2919 last_thing_searched); | |
603 | 2920 data[2 * i + 1] = Fmake_marker (); |
2921 Fset_marker (data[2 * i + 1], | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48528
diff
changeset
|
2922 make_number (search_regs.end[i]), |
727 | 2923 last_thing_searched); |
603 | 2924 } |
727 | 2925 else |
2926 /* last_thing_searched must always be Qt, a buffer, or Qnil. */ | |
2927 abort (); | |
2928 | |
63145
73d9b884e8c8
(Fmatch_data): Add optional RESEAT arg. Unchain markers
Kim F. Storm <storm@cua.dk>
parents:
61682
diff
changeset
|
2929 len = 2 * i + 2; |
603 | 2930 } |
2931 else | |
63145
73d9b884e8c8
(Fmatch_data): Add optional RESEAT arg. Unchain markers
Kim F. Storm <storm@cua.dk>
parents:
61682
diff
changeset
|
2932 data[2 * i] = data[2 * i + 1] = Qnil; |
603 | 2933 } |
16724
4b1fb372a4fe
(Fmatch_data): New args INTEGERS and REUSE.
Richard M. Stallman <rms@gnu.org>
parents:
16275
diff
changeset
|
2934 |
56294
aaa6a4ecea38
(match_limit, Fmatch_data, Fset_match_data): YAILOM.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56276
diff
changeset
|
2935 if (BUFFERP (last_thing_searched) && !NILP (integers)) |
56224
17e2d4a894aa
(Freplace_match): Adjust the match-data more
David Kastrup <dak@gnu.org>
parents:
56175
diff
changeset
|
2936 { |
56294
aaa6a4ecea38
(match_limit, Fmatch_data, Fset_match_data): YAILOM.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56276
diff
changeset
|
2937 data[len] = last_thing_searched; |
56224
17e2d4a894aa
(Freplace_match): Adjust the match-data more
David Kastrup <dak@gnu.org>
parents:
56175
diff
changeset
|
2938 len++; |
17e2d4a894aa
(Freplace_match): Adjust the match-data more
David Kastrup <dak@gnu.org>
parents:
56175
diff
changeset
|
2939 } |
17e2d4a894aa
(Freplace_match): Adjust the match-data more
David Kastrup <dak@gnu.org>
parents:
56175
diff
changeset
|
2940 |
16724
4b1fb372a4fe
(Fmatch_data): New args INTEGERS and REUSE.
Richard M. Stallman <rms@gnu.org>
parents:
16275
diff
changeset
|
2941 /* If REUSE is not usable, cons up the values and return them. */ |
4b1fb372a4fe
(Fmatch_data): New args INTEGERS and REUSE.
Richard M. Stallman <rms@gnu.org>
parents:
16275
diff
changeset
|
2942 if (! CONSP (reuse)) |
56224
17e2d4a894aa
(Freplace_match): Adjust the match-data more
David Kastrup <dak@gnu.org>
parents:
56175
diff
changeset
|
2943 return Flist (len, data); |
16724
4b1fb372a4fe
(Fmatch_data): New args INTEGERS and REUSE.
Richard M. Stallman <rms@gnu.org>
parents:
16275
diff
changeset
|
2944 |
4b1fb372a4fe
(Fmatch_data): New args INTEGERS and REUSE.
Richard M. Stallman <rms@gnu.org>
parents:
16275
diff
changeset
|
2945 /* If REUSE is a list, store as many value elements as will fit |
4b1fb372a4fe
(Fmatch_data): New args INTEGERS and REUSE.
Richard M. Stallman <rms@gnu.org>
parents:
16275
diff
changeset
|
2946 into the elements of REUSE. */ |
4b1fb372a4fe
(Fmatch_data): New args INTEGERS and REUSE.
Richard M. Stallman <rms@gnu.org>
parents:
16275
diff
changeset
|
2947 for (i = 0, tail = reuse; CONSP (tail); |
25663
a5eaace0fa01
Use XCAR and XCDR instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25441
diff
changeset
|
2948 i++, tail = XCDR (tail)) |
16724
4b1fb372a4fe
(Fmatch_data): New args INTEGERS and REUSE.
Richard M. Stallman <rms@gnu.org>
parents:
16275
diff
changeset
|
2949 { |
56224
17e2d4a894aa
(Freplace_match): Adjust the match-data more
David Kastrup <dak@gnu.org>
parents:
56175
diff
changeset
|
2950 if (i < len) |
39973
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39805
diff
changeset
|
2951 XSETCAR (tail, data[i]); |
16724
4b1fb372a4fe
(Fmatch_data): New args INTEGERS and REUSE.
Richard M. Stallman <rms@gnu.org>
parents:
16275
diff
changeset
|
2952 else |
39973
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39805
diff
changeset
|
2953 XSETCAR (tail, Qnil); |
16724
4b1fb372a4fe
(Fmatch_data): New args INTEGERS and REUSE.
Richard M. Stallman <rms@gnu.org>
parents:
16275
diff
changeset
|
2954 prev = tail; |
4b1fb372a4fe
(Fmatch_data): New args INTEGERS and REUSE.
Richard M. Stallman <rms@gnu.org>
parents:
16275
diff
changeset
|
2955 } |
4b1fb372a4fe
(Fmatch_data): New args INTEGERS and REUSE.
Richard M. Stallman <rms@gnu.org>
parents:
16275
diff
changeset
|
2956 |
4b1fb372a4fe
(Fmatch_data): New args INTEGERS and REUSE.
Richard M. Stallman <rms@gnu.org>
parents:
16275
diff
changeset
|
2957 /* If we couldn't fit all value elements into REUSE, |
4b1fb372a4fe
(Fmatch_data): New args INTEGERS and REUSE.
Richard M. Stallman <rms@gnu.org>
parents:
16275
diff
changeset
|
2958 cons up the rest of them and add them to the end of REUSE. */ |
56224
17e2d4a894aa
(Freplace_match): Adjust the match-data more
David Kastrup <dak@gnu.org>
parents:
56175
diff
changeset
|
2959 if (i < len) |
17e2d4a894aa
(Freplace_match): Adjust the match-data more
David Kastrup <dak@gnu.org>
parents:
56175
diff
changeset
|
2960 XSETCDR (prev, Flist (len - i, data + i)); |
16724
4b1fb372a4fe
(Fmatch_data): New args INTEGERS and REUSE.
Richard M. Stallman <rms@gnu.org>
parents:
16275
diff
changeset
|
2961 |
4b1fb372a4fe
(Fmatch_data): New args INTEGERS and REUSE.
Richard M. Stallman <rms@gnu.org>
parents:
16275
diff
changeset
|
2962 return reuse; |
603 | 2963 } |
2964 | |
79443
fc388b33b46d
(Fset_match_data): Remove the `evaporate' feature.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78501
diff
changeset
|
2965 /* We used to have an internal use variant of `reseat' described as: |
fc388b33b46d
(Fset_match_data): Remove the `evaporate' feature.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78501
diff
changeset
|
2966 |
fc388b33b46d
(Fset_match_data): Remove the `evaporate' feature.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78501
diff
changeset
|
2967 If RESEAT is `evaporate', put the markers back on the free list |
fc388b33b46d
(Fset_match_data): Remove the `evaporate' feature.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78501
diff
changeset
|
2968 immediately. No other references to the markers must exist in this |
fc388b33b46d
(Fset_match_data): Remove the `evaporate' feature.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78501
diff
changeset
|
2969 case, so it is used only internally on the unwind stack and |
fc388b33b46d
(Fset_match_data): Remove the `evaporate' feature.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78501
diff
changeset
|
2970 save-match-data from Lisp. |
fc388b33b46d
(Fset_match_data): Remove the `evaporate' feature.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78501
diff
changeset
|
2971 |
fc388b33b46d
(Fset_match_data): Remove the `evaporate' feature.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78501
diff
changeset
|
2972 But it was ill-conceived: those supposedly-internal markers get exposed via |
fc388b33b46d
(Fset_match_data): Remove the `evaporate' feature.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78501
diff
changeset
|
2973 the undo-list, so freeing them here is unsafe. */ |
603 | 2974 |
63145
73d9b884e8c8
(Fmatch_data): Add optional RESEAT arg. Unchain markers
Kim F. Storm <storm@cua.dk>
parents:
61682
diff
changeset
|
2975 DEFUN ("set-match-data", Fset_match_data, Sset_match_data, 1, 2, 0, |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2976 doc: /* Set internal data on last search match from elements of LIST. |
63145
73d9b884e8c8
(Fmatch_data): Add optional RESEAT arg. Unchain markers
Kim F. Storm <storm@cua.dk>
parents:
61682
diff
changeset
|
2977 LIST should have been created by calling `match-data' previously. |
73d9b884e8c8
(Fmatch_data): Add optional RESEAT arg. Unchain markers
Kim F. Storm <storm@cua.dk>
parents:
61682
diff
changeset
|
2978 |
63666
e0dd6fa42c85
(Fmatch_data): Remove evaporate option.
Kim F. Storm <storm@cua.dk>
parents:
63152
diff
changeset
|
2979 If optional arg RESEAT is non-nil, make markers on LIST point nowhere. */) |
109179
8cfee7d2955f
Convert DEFUNs to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109165
diff
changeset
|
2980 (register Lisp_Object list, Lisp_Object reseat) |
603 | 2981 { |
2982 register int i; | |
2983 register Lisp_Object marker; | |
2984 | |
10032
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10020
diff
changeset
|
2985 if (running_asynch_code) |
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10020
diff
changeset
|
2986 save_search_regs (); |
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10020
diff
changeset
|
2987 |
71841
0b34cf45daa8
(Fset_match_data): Use CHECK_LIST.
Kim F. Storm <storm@cua.dk>
parents:
71063
diff
changeset
|
2988 CHECK_LIST (list); |
603 | 2989 |
56224
17e2d4a894aa
(Freplace_match): Adjust the match-data more
David Kastrup <dak@gnu.org>
parents:
56175
diff
changeset
|
2990 /* Unless we find a marker with a buffer or an explicit buffer |
17e2d4a894aa
(Freplace_match): Adjust the match-data more
David Kastrup <dak@gnu.org>
parents:
56175
diff
changeset
|
2991 in LIST, assume that this match data came from a string. */ |
727 | 2992 last_thing_searched = Qt; |
2993 | |
621 | 2994 /* Allocate registers if they don't already exist. */ |
2995 { | |
1523
bd61aaa7828b
* search.c (Fstore_match_data): Don't assume Flength returns an
Jim Blandy <jimb@redhat.com>
parents:
1413
diff
changeset
|
2996 int length = XFASTINT (Flength (list)) / 2; |
621 | 2997 |
2998 if (length > search_regs.num_regs) | |
2999 { | |
708 | 3000 if (search_regs.num_regs == 0) |
3001 { | |
3002 search_regs.start | |
3003 = (regoff_t *) xmalloc (length * sizeof (regoff_t)); | |
3004 search_regs.end | |
3005 = (regoff_t *) xmalloc (length * sizeof (regoff_t)); | |
3006 } | |
621 | 3007 else |
708 | 3008 { |
3009 search_regs.start | |
3010 = (regoff_t *) xrealloc (search_regs.start, | |
3011 length * sizeof (regoff_t)); | |
3012 search_regs.end | |
3013 = (regoff_t *) xrealloc (search_regs.end, | |
3014 length * sizeof (regoff_t)); | |
3015 } | |
621 | 3016 |
33052
9ec478daa468
(Fset_match_data): Be sure to make search_regs always sane.
Kenichi Handa <handa@m17n.org>
parents:
32387
diff
changeset
|
3017 for (i = search_regs.num_regs; i < length; i++) |
9ec478daa468
(Fset_match_data): Be sure to make search_regs always sane.
Kenichi Handa <handa@m17n.org>
parents:
32387
diff
changeset
|
3018 search_regs.start[i] = -1; |
9ec478daa468
(Fset_match_data): Be sure to make search_regs always sane.
Kenichi Handa <handa@m17n.org>
parents:
32387
diff
changeset
|
3019 |
9605
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
3020 search_regs.num_regs = length; |
621 | 3021 } |
56224
17e2d4a894aa
(Freplace_match): Adjust the match-data more
David Kastrup <dak@gnu.org>
parents:
56175
diff
changeset
|
3022 |
63145
73d9b884e8c8
(Fmatch_data): Add optional RESEAT arg. Unchain markers
Kim F. Storm <storm@cua.dk>
parents:
61682
diff
changeset
|
3023 for (i = 0; CONSP (list); i++) |
56224
17e2d4a894aa
(Freplace_match): Adjust the match-data more
David Kastrup <dak@gnu.org>
parents:
56175
diff
changeset
|
3024 { |
63145
73d9b884e8c8
(Fmatch_data): Add optional RESEAT arg. Unchain markers
Kim F. Storm <storm@cua.dk>
parents:
61682
diff
changeset
|
3025 marker = XCAR (list); |
56294
aaa6a4ecea38
(match_limit, Fmatch_data, Fset_match_data): YAILOM.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56276
diff
changeset
|
3026 if (BUFFERP (marker)) |
56276
b04610e283ce
(Fset_match_data): Allow buffer before end of list
David Kastrup <dak@gnu.org>
parents:
56224
diff
changeset
|
3027 { |
56294
aaa6a4ecea38
(match_limit, Fmatch_data, Fset_match_data): YAILOM.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56276
diff
changeset
|
3028 last_thing_searched = marker; |
56276
b04610e283ce
(Fset_match_data): Allow buffer before end of list
David Kastrup <dak@gnu.org>
parents:
56224
diff
changeset
|
3029 break; |
b04610e283ce
(Fset_match_data): Allow buffer before end of list
David Kastrup <dak@gnu.org>
parents:
56224
diff
changeset
|
3030 } |
b04610e283ce
(Fset_match_data): Allow buffer before end of list
David Kastrup <dak@gnu.org>
parents:
56224
diff
changeset
|
3031 if (i >= length) |
b04610e283ce
(Fset_match_data): Allow buffer before end of list
David Kastrup <dak@gnu.org>
parents:
56224
diff
changeset
|
3032 break; |
56224
17e2d4a894aa
(Freplace_match): Adjust the match-data more
David Kastrup <dak@gnu.org>
parents:
56175
diff
changeset
|
3033 if (NILP (marker)) |
17e2d4a894aa
(Freplace_match): Adjust the match-data more
David Kastrup <dak@gnu.org>
parents:
56175
diff
changeset
|
3034 { |
17e2d4a894aa
(Freplace_match): Adjust the match-data more
David Kastrup <dak@gnu.org>
parents:
56175
diff
changeset
|
3035 search_regs.start[i] = -1; |
63145
73d9b884e8c8
(Fmatch_data): Add optional RESEAT arg. Unchain markers
Kim F. Storm <storm@cua.dk>
parents:
61682
diff
changeset
|
3036 list = XCDR (list); |
56224
17e2d4a894aa
(Freplace_match): Adjust the match-data more
David Kastrup <dak@gnu.org>
parents:
56175
diff
changeset
|
3037 } |
17e2d4a894aa
(Freplace_match): Adjust the match-data more
David Kastrup <dak@gnu.org>
parents:
56175
diff
changeset
|
3038 else |
17e2d4a894aa
(Freplace_match): Adjust the match-data more
David Kastrup <dak@gnu.org>
parents:
56175
diff
changeset
|
3039 { |
103001
6b3176775d00
* search.c: Use EMACS_INT for buffer positions. Add prototypes.
Andreas Schwab <schwab@linux-m68k.org>
parents:
102999
diff
changeset
|
3040 EMACS_INT from; |
63145
73d9b884e8c8
(Fmatch_data): Add optional RESEAT arg. Unchain markers
Kim F. Storm <storm@cua.dk>
parents:
61682
diff
changeset
|
3041 Lisp_Object m; |
73d9b884e8c8
(Fmatch_data): Add optional RESEAT arg. Unchain markers
Kim F. Storm <storm@cua.dk>
parents:
61682
diff
changeset
|
3042 |
73d9b884e8c8
(Fmatch_data): Add optional RESEAT arg. Unchain markers
Kim F. Storm <storm@cua.dk>
parents:
61682
diff
changeset
|
3043 m = marker; |
56224
17e2d4a894aa
(Freplace_match): Adjust the match-data more
David Kastrup <dak@gnu.org>
parents:
56175
diff
changeset
|
3044 if (MARKERP (marker)) |
17e2d4a894aa
(Freplace_match): Adjust the match-data more
David Kastrup <dak@gnu.org>
parents:
56175
diff
changeset
|
3045 { |
17e2d4a894aa
(Freplace_match): Adjust the match-data more
David Kastrup <dak@gnu.org>
parents:
56175
diff
changeset
|
3046 if (XMARKER (marker)->buffer == 0) |
17e2d4a894aa
(Freplace_match): Adjust the match-data more
David Kastrup <dak@gnu.org>
parents:
56175
diff
changeset
|
3047 XSETFASTINT (marker, 0); |
17e2d4a894aa
(Freplace_match): Adjust the match-data more
David Kastrup <dak@gnu.org>
parents:
56175
diff
changeset
|
3048 else |
17e2d4a894aa
(Freplace_match): Adjust the match-data more
David Kastrup <dak@gnu.org>
parents:
56175
diff
changeset
|
3049 XSETBUFFER (last_thing_searched, XMARKER (marker)->buffer); |
17e2d4a894aa
(Freplace_match): Adjust the match-data more
David Kastrup <dak@gnu.org>
parents:
56175
diff
changeset
|
3050 } |
58567
47729f2cb184
(syms_of_search) <search-spaces-regexp>: Move 'doc:'
Kim F. Storm <storm@cua.dk>
parents:
58348
diff
changeset
|
3051 |
56224
17e2d4a894aa
(Freplace_match): Adjust the match-data more
David Kastrup <dak@gnu.org>
parents:
56175
diff
changeset
|
3052 CHECK_NUMBER_COERCE_MARKER (marker); |
17e2d4a894aa
(Freplace_match): Adjust the match-data more
David Kastrup <dak@gnu.org>
parents:
56175
diff
changeset
|
3053 from = XINT (marker); |
63145
73d9b884e8c8
(Fmatch_data): Add optional RESEAT arg. Unchain markers
Kim F. Storm <storm@cua.dk>
parents:
61682
diff
changeset
|
3054 |
73d9b884e8c8
(Fmatch_data): Add optional RESEAT arg. Unchain markers
Kim F. Storm <storm@cua.dk>
parents:
61682
diff
changeset
|
3055 if (!NILP (reseat) && MARKERP (m)) |
73d9b884e8c8
(Fmatch_data): Add optional RESEAT arg. Unchain markers
Kim F. Storm <storm@cua.dk>
parents:
61682
diff
changeset
|
3056 { |
79443
fc388b33b46d
(Fset_match_data): Remove the `evaporate' feature.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78501
diff
changeset
|
3057 unchain_marker (XMARKER (m)); |
63152
3f80de0be046
(Fset_match_data): Fix last change.
Kim F. Storm <storm@cua.dk>
parents:
63145
diff
changeset
|
3058 XSETCAR (list, Qnil); |
63145
73d9b884e8c8
(Fmatch_data): Add optional RESEAT arg. Unchain markers
Kim F. Storm <storm@cua.dk>
parents:
61682
diff
changeset
|
3059 } |
73d9b884e8c8
(Fmatch_data): Add optional RESEAT arg. Unchain markers
Kim F. Storm <storm@cua.dk>
parents:
61682
diff
changeset
|
3060 |
73d9b884e8c8
(Fmatch_data): Add optional RESEAT arg. Unchain markers
Kim F. Storm <storm@cua.dk>
parents:
61682
diff
changeset
|
3061 if ((list = XCDR (list), !CONSP (list))) |
73d9b884e8c8
(Fmatch_data): Add optional RESEAT arg. Unchain markers
Kim F. Storm <storm@cua.dk>
parents:
61682
diff
changeset
|
3062 break; |
73d9b884e8c8
(Fmatch_data): Add optional RESEAT arg. Unchain markers
Kim F. Storm <storm@cua.dk>
parents:
61682
diff
changeset
|
3063 |
73d9b884e8c8
(Fmatch_data): Add optional RESEAT arg. Unchain markers
Kim F. Storm <storm@cua.dk>
parents:
61682
diff
changeset
|
3064 m = marker = XCAR (list); |
73d9b884e8c8
(Fmatch_data): Add optional RESEAT arg. Unchain markers
Kim F. Storm <storm@cua.dk>
parents:
61682
diff
changeset
|
3065 |
56224
17e2d4a894aa
(Freplace_match): Adjust the match-data more
David Kastrup <dak@gnu.org>
parents:
56175
diff
changeset
|
3066 if (MARKERP (marker) && XMARKER (marker)->buffer == 0) |
17e2d4a894aa
(Freplace_match): Adjust the match-data more
David Kastrup <dak@gnu.org>
parents:
56175
diff
changeset
|
3067 XSETFASTINT (marker, 0); |
58567
47729f2cb184
(syms_of_search) <search-spaces-regexp>: Move 'doc:'
Kim F. Storm <storm@cua.dk>
parents:
58348
diff
changeset
|
3068 |
56224
17e2d4a894aa
(Freplace_match): Adjust the match-data more
David Kastrup <dak@gnu.org>
parents:
56175
diff
changeset
|
3069 CHECK_NUMBER_COERCE_MARKER (marker); |
17e2d4a894aa
(Freplace_match): Adjust the match-data more
David Kastrup <dak@gnu.org>
parents:
56175
diff
changeset
|
3070 search_regs.start[i] = from; |
17e2d4a894aa
(Freplace_match): Adjust the match-data more
David Kastrup <dak@gnu.org>
parents:
56175
diff
changeset
|
3071 search_regs.end[i] = XINT (marker); |
63145
73d9b884e8c8
(Fmatch_data): Add optional RESEAT arg. Unchain markers
Kim F. Storm <storm@cua.dk>
parents:
61682
diff
changeset
|
3072 |
73d9b884e8c8
(Fmatch_data): Add optional RESEAT arg. Unchain markers
Kim F. Storm <storm@cua.dk>
parents:
61682
diff
changeset
|
3073 if (!NILP (reseat) && MARKERP (m)) |
73d9b884e8c8
(Fmatch_data): Add optional RESEAT arg. Unchain markers
Kim F. Storm <storm@cua.dk>
parents:
61682
diff
changeset
|
3074 { |
79443
fc388b33b46d
(Fset_match_data): Remove the `evaporate' feature.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78501
diff
changeset
|
3075 unchain_marker (XMARKER (m)); |
63152
3f80de0be046
(Fset_match_data): Fix last change.
Kim F. Storm <storm@cua.dk>
parents:
63145
diff
changeset
|
3076 XSETCAR (list, Qnil); |
63145
73d9b884e8c8
(Fmatch_data): Add optional RESEAT arg. Unchain markers
Kim F. Storm <storm@cua.dk>
parents:
61682
diff
changeset
|
3077 } |
56224
17e2d4a894aa
(Freplace_match): Adjust the match-data more
David Kastrup <dak@gnu.org>
parents:
56175
diff
changeset
|
3078 } |
63145
73d9b884e8c8
(Fmatch_data): Add optional RESEAT arg. Unchain markers
Kim F. Storm <storm@cua.dk>
parents:
61682
diff
changeset
|
3079 list = XCDR (list); |
56224
17e2d4a894aa
(Freplace_match): Adjust the match-data more
David Kastrup <dak@gnu.org>
parents:
56175
diff
changeset
|
3080 } |
17e2d4a894aa
(Freplace_match): Adjust the match-data more
David Kastrup <dak@gnu.org>
parents:
56175
diff
changeset
|
3081 |
17e2d4a894aa
(Freplace_match): Adjust the match-data more
David Kastrup <dak@gnu.org>
parents:
56175
diff
changeset
|
3082 for (; i < search_regs.num_regs; i++) |
17e2d4a894aa
(Freplace_match): Adjust the match-data more
David Kastrup <dak@gnu.org>
parents:
56175
diff
changeset
|
3083 search_regs.start[i] = -1; |
621 | 3084 } |
3085 | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48528
diff
changeset
|
3086 return Qnil; |
603 | 3087 } |
3088 | |
10032
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10020
diff
changeset
|
3089 /* If non-zero the match data have been saved in saved_search_regs |
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10020
diff
changeset
|
3090 during the execution of a sentinel or filter. */ |
10128
59ccd063e016
(search_regs_saved): Delete initializer.
Richard M. Stallman <rms@gnu.org>
parents:
10055
diff
changeset
|
3091 static int search_regs_saved; |
10032
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10020
diff
changeset
|
3092 static struct re_registers saved_search_regs; |
56224
17e2d4a894aa
(Freplace_match): Adjust the match-data more
David Kastrup <dak@gnu.org>
parents:
56175
diff
changeset
|
3093 static Lisp_Object saved_last_thing_searched; |
10032
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10020
diff
changeset
|
3094 |
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10020
diff
changeset
|
3095 /* Called from Flooking_at, Fstring_match, search_buffer, Fstore_match_data |
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10020
diff
changeset
|
3096 if asynchronous code (filter or sentinel) is running. */ |
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10020
diff
changeset
|
3097 static void |
109126
aec1143e8d85
Convert (most) functions in src to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109100
diff
changeset
|
3098 save_search_regs (void) |
10032
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10020
diff
changeset
|
3099 { |
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10020
diff
changeset
|
3100 if (!search_regs_saved) |
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10020
diff
changeset
|
3101 { |
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10020
diff
changeset
|
3102 saved_search_regs.num_regs = search_regs.num_regs; |
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10020
diff
changeset
|
3103 saved_search_regs.start = search_regs.start; |
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10020
diff
changeset
|
3104 saved_search_regs.end = search_regs.end; |
56224
17e2d4a894aa
(Freplace_match): Adjust the match-data more
David Kastrup <dak@gnu.org>
parents:
56175
diff
changeset
|
3105 saved_last_thing_searched = last_thing_searched; |
17e2d4a894aa
(Freplace_match): Adjust the match-data more
David Kastrup <dak@gnu.org>
parents:
56175
diff
changeset
|
3106 last_thing_searched = Qnil; |
10032
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10020
diff
changeset
|
3107 search_regs.num_regs = 0; |
10250
422c3b96efda
(set_search_regs): Really set search_regs.start and .end.
Richard M. Stallman <rms@gnu.org>
parents:
10141
diff
changeset
|
3108 search_regs.start = 0; |
422c3b96efda
(set_search_regs): Really set search_regs.start and .end.
Richard M. Stallman <rms@gnu.org>
parents:
10141
diff
changeset
|
3109 search_regs.end = 0; |
10032
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10020
diff
changeset
|
3110 |
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10020
diff
changeset
|
3111 search_regs_saved = 1; |
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10020
diff
changeset
|
3112 } |
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10020
diff
changeset
|
3113 } |
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10020
diff
changeset
|
3114 |
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10020
diff
changeset
|
3115 /* Called upon exit from filters and sentinels. */ |
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10020
diff
changeset
|
3116 void |
109126
aec1143e8d85
Convert (most) functions in src to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109100
diff
changeset
|
3117 restore_search_regs (void) |
10032
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10020
diff
changeset
|
3118 { |
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10020
diff
changeset
|
3119 if (search_regs_saved) |
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10020
diff
changeset
|
3120 { |
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10020
diff
changeset
|
3121 if (search_regs.num_regs > 0) |
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10020
diff
changeset
|
3122 { |
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10020
diff
changeset
|
3123 xfree (search_regs.start); |
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10020
diff
changeset
|
3124 xfree (search_regs.end); |
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10020
diff
changeset
|
3125 } |
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10020
diff
changeset
|
3126 search_regs.num_regs = saved_search_regs.num_regs; |
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10020
diff
changeset
|
3127 search_regs.start = saved_search_regs.start; |
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10020
diff
changeset
|
3128 search_regs.end = saved_search_regs.end; |
56224
17e2d4a894aa
(Freplace_match): Adjust the match-data more
David Kastrup <dak@gnu.org>
parents:
56175
diff
changeset
|
3129 last_thing_searched = saved_last_thing_searched; |
17e2d4a894aa
(Freplace_match): Adjust the match-data more
David Kastrup <dak@gnu.org>
parents:
56175
diff
changeset
|
3130 saved_last_thing_searched = Qnil; |
10032
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10020
diff
changeset
|
3131 search_regs_saved = 0; |
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10020
diff
changeset
|
3132 } |
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10020
diff
changeset
|
3133 } |
f689803caa92
Added code for automatically saving and restoring the match data
Francesco Potortì <pot@gnu.org>
parents:
10020
diff
changeset
|
3134 |
63145
73d9b884e8c8
(Fmatch_data): Add optional RESEAT arg. Unchain markers
Kim F. Storm <storm@cua.dk>
parents:
61682
diff
changeset
|
3135 static Lisp_Object |
109126
aec1143e8d85
Convert (most) functions in src to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109100
diff
changeset
|
3136 unwind_set_match_data (Lisp_Object list) |
63145
73d9b884e8c8
(Fmatch_data): Add optional RESEAT arg. Unchain markers
Kim F. Storm <storm@cua.dk>
parents:
61682
diff
changeset
|
3137 { |
79443
fc388b33b46d
(Fset_match_data): Remove the `evaporate' feature.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78501
diff
changeset
|
3138 /* It is NOT ALWAYS safe to free (evaporate) the markers immediately. */ |
fc388b33b46d
(Fset_match_data): Remove the `evaporate' feature.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78501
diff
changeset
|
3139 return Fset_match_data (list, Qt); |
63145
73d9b884e8c8
(Fmatch_data): Add optional RESEAT arg. Unchain markers
Kim F. Storm <storm@cua.dk>
parents:
61682
diff
changeset
|
3140 } |
73d9b884e8c8
(Fmatch_data): Add optional RESEAT arg. Unchain markers
Kim F. Storm <storm@cua.dk>
parents:
61682
diff
changeset
|
3141 |
73d9b884e8c8
(Fmatch_data): Add optional RESEAT arg. Unchain markers
Kim F. Storm <storm@cua.dk>
parents:
61682
diff
changeset
|
3142 /* Called to unwind protect the match data. */ |
73d9b884e8c8
(Fmatch_data): Add optional RESEAT arg. Unchain markers
Kim F. Storm <storm@cua.dk>
parents:
61682
diff
changeset
|
3143 void |
109126
aec1143e8d85
Convert (most) functions in src to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109100
diff
changeset
|
3144 record_unwind_save_match_data (void) |
63145
73d9b884e8c8
(Fmatch_data): Add optional RESEAT arg. Unchain markers
Kim F. Storm <storm@cua.dk>
parents:
61682
diff
changeset
|
3145 { |
73d9b884e8c8
(Fmatch_data): Add optional RESEAT arg. Unchain markers
Kim F. Storm <storm@cua.dk>
parents:
61682
diff
changeset
|
3146 record_unwind_protect (unwind_set_match_data, |
73d9b884e8c8
(Fmatch_data): Add optional RESEAT arg. Unchain markers
Kim F. Storm <storm@cua.dk>
parents:
61682
diff
changeset
|
3147 Fmatch_data (Qnil, Qnil, Qnil)); |
73d9b884e8c8
(Fmatch_data): Add optional RESEAT arg. Unchain markers
Kim F. Storm <storm@cua.dk>
parents:
61682
diff
changeset
|
3148 } |
73d9b884e8c8
(Fmatch_data): Add optional RESEAT arg. Unchain markers
Kim F. Storm <storm@cua.dk>
parents:
61682
diff
changeset
|
3149 |
603 | 3150 /* Quote a string to inactivate reg-expr chars */ |
3151 | |
3152 DEFUN ("regexp-quote", Fregexp_quote, Sregexp_quote, 1, 1, 0, | |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3153 doc: /* Return a regexp string which matches exactly STRING and nothing else. */) |
109179
8cfee7d2955f
Convert DEFUNs to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109165
diff
changeset
|
3154 (Lisp_Object string) |
603 | 3155 { |
3156 register unsigned char *in, *out, *end; | |
3157 register unsigned char *temp; | |
20588
138c95482e6b
(search_buffer): Handle bytes vs chars in non-RE case.
Richard M. Stallman <rms@gnu.org>
parents:
20547
diff
changeset
|
3158 int backslashes_added = 0; |
603 | 3159 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40269
diff
changeset
|
3160 CHECK_STRING (string); |
603 | 3161 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
45263
diff
changeset
|
3162 temp = (unsigned char *) alloca (SBYTES (string) * 2); |
603 | 3163 |
3164 /* Now copy the data into the new string, inserting escapes. */ | |
3165 | |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
45263
diff
changeset
|
3166 in = SDATA (string); |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
45263
diff
changeset
|
3167 end = in + SBYTES (string); |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48528
diff
changeset
|
3168 out = temp; |
603 | 3169 |
3170 for (; in != end; in++) | |
3171 { | |
69238
de924a86ee65
(Fregexp_quote): Do not precede a literal `]' with two backslashes to
Luc Teirlinck <teirllm@auburn.edu>
parents:
68651
diff
changeset
|
3172 if (*in == '[' |
603 | 3173 || *in == '*' || *in == '.' || *in == '\\' |
3174 || *in == '?' || *in == '+' | |
3175 || *in == '^' || *in == '$') | |
20588
138c95482e6b
(search_buffer): Handle bytes vs chars in non-RE case.
Richard M. Stallman <rms@gnu.org>
parents:
20547
diff
changeset
|
3176 *out++ = '\\', backslashes_added++; |
603 | 3177 *out++ = *in; |
3178 } | |
3179 | |
21248
aba5e1c3328b
(Fregexp_quote): Use make_specified_string.
Richard M. Stallman <rms@gnu.org>
parents:
21244
diff
changeset
|
3180 return make_specified_string (temp, |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
45263
diff
changeset
|
3181 SCHARS (string) + backslashes_added, |
21248
aba5e1c3328b
(Fregexp_quote): Use make_specified_string.
Richard M. Stallman <rms@gnu.org>
parents:
21244
diff
changeset
|
3182 out - temp, |
aba5e1c3328b
(Fregexp_quote): Use make_specified_string.
Richard M. Stallman <rms@gnu.org>
parents:
21244
diff
changeset
|
3183 STRING_MULTIBYTE (string)); |
603 | 3184 } |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48528
diff
changeset
|
3185 |
21514 | 3186 void |
109126
aec1143e8d85
Convert (most) functions in src to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109100
diff
changeset
|
3187 syms_of_search (void) |
603 | 3188 { |
3189 register int i; | |
3190 | |
9605
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
3191 for (i = 0; i < REGEXP_CACHE_SIZE; ++i) |
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
3192 { |
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
3193 searchbufs[i].buf.allocated = 100; |
51544
a0c2b39160e9
(shrink_regexp_cache): Use xrealloc.
Dave Love <fx@gnu.org>
parents:
49761
diff
changeset
|
3194 searchbufs[i].buf.buffer = (unsigned char *) xmalloc (100); |
9605
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
3195 searchbufs[i].buf.fastmap = searchbufs[i].fastmap; |
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
3196 searchbufs[i].regexp = Qnil; |
58330
5be8a633ec57
(struct regexp_cache): New element whitespace_regexp.
Richard M. Stallman <rms@gnu.org>
parents:
58326
diff
changeset
|
3197 searchbufs[i].whitespace_regexp = Qnil; |
73002
b3a72607819d
* search.c (struct regexp_cache): New entry syntax_table.
Chong Yidong <cyd@stupidchicken.com>
parents:
72945
diff
changeset
|
3198 searchbufs[i].syntax_table = Qnil; |
9605
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
3199 staticpro (&searchbufs[i].regexp); |
64318
a64663d06985
(syms_of_search): Staticpro searchbuf.whitespace_regexp.
Kim F. Storm <storm@cua.dk>
parents:
64084
diff
changeset
|
3200 staticpro (&searchbufs[i].whitespace_regexp); |
73002
b3a72607819d
* search.c (struct regexp_cache): New entry syntax_table.
Chong Yidong <cyd@stupidchicken.com>
parents:
72945
diff
changeset
|
3201 staticpro (&searchbufs[i].syntax_table); |
9605
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
3202 searchbufs[i].next = (i == REGEXP_CACHE_SIZE-1 ? 0 : &searchbufs[i+1]); |
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
3203 } |
cf97e75d8e02
(searchbufs): New variable, replaces searchbuf and last_regexp and
Karl Heuer <kwzh@gnu.org>
parents:
9452
diff
changeset
|
3204 searchbuf_head = &searchbufs[0]; |
603 | 3205 |
105877
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105669
diff
changeset
|
3206 Qsearch_failed = intern_c_string ("search-failed"); |
603 | 3207 staticpro (&Qsearch_failed); |
105877
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105669
diff
changeset
|
3208 Qinvalid_regexp = intern_c_string ("invalid-regexp"); |
603 | 3209 staticpro (&Qinvalid_regexp); |
3210 | |
3211 Fput (Qsearch_failed, Qerror_conditions, | |
105877
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105669
diff
changeset
|
3212 pure_cons (Qsearch_failed, pure_cons (Qerror, Qnil))); |
603 | 3213 Fput (Qsearch_failed, Qerror_message, |
105877
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105669
diff
changeset
|
3214 make_pure_c_string ("Search failed")); |
603 | 3215 |
3216 Fput (Qinvalid_regexp, Qerror_conditions, | |
105877
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105669
diff
changeset
|
3217 pure_cons (Qinvalid_regexp, pure_cons (Qerror, Qnil))); |
603 | 3218 Fput (Qinvalid_regexp, Qerror_message, |
105877
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105669
diff
changeset
|
3219 make_pure_c_string ("Invalid regexp")); |
603 | 3220 |
727 | 3221 last_thing_searched = Qnil; |
3222 staticpro (&last_thing_searched); | |
3223 | |
56429 | 3224 saved_last_thing_searched = Qnil; |
3225 staticpro (&saved_last_thing_searched); | |
3226 | |
58348
623ffd21f0ff
(Vsearch_spaces_regexp):
Richard M. Stallman <rms@gnu.org>
parents:
58330
diff
changeset
|
3227 DEFVAR_LISP ("search-spaces-regexp", &Vsearch_spaces_regexp, |
58567
47729f2cb184
(syms_of_search) <search-spaces-regexp>: Move 'doc:'
Kim F. Storm <storm@cua.dk>
parents:
58348
diff
changeset
|
3228 doc: /* Regexp to substitute for bunches of spaces in regexp search. |
58326
0cc0d3274d68
(Vsearch_whitespace_regexp): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
57735
diff
changeset
|
3229 Some commands use this for user-specified regexps. |
0cc0d3274d68
(Vsearch_whitespace_regexp): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
57735
diff
changeset
|
3230 Spaces that occur inside character classes or repetition operators |
0cc0d3274d68
(Vsearch_whitespace_regexp): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
57735
diff
changeset
|
3231 or other such regexp constructs are not replaced with this. |
0cc0d3274d68
(Vsearch_whitespace_regexp): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
57735
diff
changeset
|
3232 A value of nil (which is the normal value) means treat spaces literally. */); |
58348
623ffd21f0ff
(Vsearch_spaces_regexp):
Richard M. Stallman <rms@gnu.org>
parents:
58330
diff
changeset
|
3233 Vsearch_spaces_regexp = Qnil; |
58326
0cc0d3274d68
(Vsearch_whitespace_regexp): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
57735
diff
changeset
|
3234 |
81780
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
3235 DEFVAR_LISP ("inhibit-changing-match-data", &Vinhibit_changing_match_data, |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
3236 doc: /* Internal use only. |
86900
a65aa1e9a34b
(syms_of_search) <inhibit-changing-match-data>: Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
86275
diff
changeset
|
3237 If non-nil, the primitive searching and matching functions |
a65aa1e9a34b
(syms_of_search) <inhibit-changing-match-data>: Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
86275
diff
changeset
|
3238 such as `looking-at', `string-match', `re-search-forward', etc., |
a65aa1e9a34b
(syms_of_search) <inhibit-changing-match-data>: Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
86275
diff
changeset
|
3239 do not set the match data. The proper way to use this variable |
a65aa1e9a34b
(syms_of_search) <inhibit-changing-match-data>: Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
86275
diff
changeset
|
3240 is to bind it with `let' around a small expression. */); |
81780
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
3241 Vinhibit_changing_match_data = Qnil; |
54b5d7bec019
(Vinhibit_changing_match_data, search_regs_1): New vars.
Richard M. Stallman <rms@gnu.org>
parents:
81279
diff
changeset
|
3242 |
10020
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
3243 defsubr (&Slooking_at); |
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
3244 defsubr (&Sposix_looking_at); |
603 | 3245 defsubr (&Sstring_match); |
10020
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
3246 defsubr (&Sposix_string_match); |
603 | 3247 defsubr (&Ssearch_forward); |
3248 defsubr (&Ssearch_backward); | |
3249 defsubr (&Sword_search_forward); | |
3250 defsubr (&Sword_search_backward); | |
98347
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
3251 defsubr (&Sword_search_forward_lax); |
0a71297a00f9
(wordify): New argument for lax word-ends.
Chong Yidong <cyd@stupidchicken.com>
parents:
97759
diff
changeset
|
3252 defsubr (&Sword_search_backward_lax); |
603 | 3253 defsubr (&Sre_search_forward); |
3254 defsubr (&Sre_search_backward); | |
10020
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
3255 defsubr (&Sposix_search_forward); |
c41ce96785a8
(struct regexp_cache): New field `posix'.
Richard M. Stallman <rms@gnu.org>
parents:
9605
diff
changeset
|
3256 defsubr (&Sposix_search_backward); |
603 | 3257 defsubr (&Sreplace_match); |
3258 defsubr (&Smatch_beginning); | |
3259 defsubr (&Smatch_end); | |
3260 defsubr (&Smatch_data); | |
21171
60f6085df198
(Fset_match_data): Renamed from Fstore_match_data.
Richard M. Stallman <rms@gnu.org>
parents:
21117
diff
changeset
|
3261 defsubr (&Sset_match_data); |
603 | 3262 defsubr (&Sregexp_quote); |
3263 } | |
52401 | 3264 |
3265 /* arch-tag: a6059d79-0552-4f14-a2cb-d379a4e3c78f | |
3266 (do not change this comment) */ |