Mercurial > emacs
annotate src/syntax.c @ 1101:3e06965680fd
entered into RCS
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 12 Sep 1992 07:45:15 +0000 |
parents | 91a456e52db1 |
children | a9aeeaa9da8f |
rev | line source |
---|---|
163 | 1 /* GNU Emacs routines to deal with syntax tables; also word and list parsing. |
726 | 2 Copyright (C) 1985, 1987, 1992 Free Software Foundation, Inc. |
163 | 3 |
4 This file is part of GNU Emacs. | |
5 | |
6 GNU Emacs is free software; you can redistribute it and/or modify | |
7 it under the terms of the GNU General Public License as published by | |
726 | 8 the Free Software Foundation; either version 2, or (at your option) |
163 | 9 any later version. |
10 | |
11 GNU Emacs is distributed in the hope that it will be useful, | |
12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 GNU General Public License for more details. | |
15 | |
16 You should have received a copy of the GNU General Public License | |
17 along with GNU Emacs; see the file COPYING. If not, write to | |
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
19 | |
20 | |
21 #include "config.h" | |
22 #include <ctype.h> | |
23 #include "lisp.h" | |
24 #include "commands.h" | |
25 #include "buffer.h" | |
26 #include "syntax.h" | |
27 | |
28 Lisp_Object Qsyntax_table_p; | |
29 | |
30 int words_include_escapes; | |
31 | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
32 /* This is the internal form of the parse state used in parse-partial-sexp. */ |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
33 |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
34 struct lisp_parse_state |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
35 { |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
36 int depth; /* Depth at end of parsing */ |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
37 int instring; /* -1 if not within string, else desired terminator. */ |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
38 int incomment; /* Nonzero if within a comment at end of parsing */ |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
39 int comstyle; /* comment style a=0, or b=1 */ |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
40 int quoted; /* Nonzero if just after an escape char at end of parsing */ |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
41 int thislevelstart; /* Char number of most recent start-of-expression at current level */ |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
42 int prevlevelstart; /* Char number of start of containing expression */ |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
43 int location; /* Char number at which parsing stopped. */ |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
44 int mindepth; /* Minimum depth seen while scanning. */ |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
45 int comstart; /* Position just after last comment starter. */ |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
46 }; |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
47 |
163 | 48 DEFUN ("syntax-table-p", Fsyntax_table_p, Ssyntax_table_p, 1, 1, 0, |
49 "Return t if ARG is a syntax table.\n\ | |
50 Any vector of 256 elements will do.") | |
51 (obj) | |
52 Lisp_Object obj; | |
53 { | |
54 if (XTYPE (obj) == Lisp_Vector && XVECTOR (obj)->size == 0400) | |
55 return Qt; | |
56 return Qnil; | |
57 } | |
58 | |
59 Lisp_Object | |
60 check_syntax_table (obj) | |
61 Lisp_Object obj; | |
62 { | |
63 register Lisp_Object tem; | |
64 while (tem = Fsyntax_table_p (obj), | |
485 | 65 NILP (tem)) |
163 | 66 obj = wrong_type_argument (Qsyntax_table_p, obj, 0); |
67 return obj; | |
68 } | |
69 | |
70 | |
71 DEFUN ("syntax-table", Fsyntax_table, Ssyntax_table, 0, 0, 0, | |
72 "Return the current syntax table.\n\ | |
73 This is the one specified by the current buffer.") | |
74 () | |
75 { | |
76 return current_buffer->syntax_table; | |
77 } | |
78 | |
79 DEFUN ("standard-syntax-table", Fstandard_syntax_table, | |
80 Sstandard_syntax_table, 0, 0, 0, | |
81 "Return the standard syntax table.\n\ | |
82 This is the one used for new buffers.") | |
83 () | |
84 { | |
85 return Vstandard_syntax_table; | |
86 } | |
87 | |
88 DEFUN ("copy-syntax-table", Fcopy_syntax_table, Scopy_syntax_table, 0, 1, 0, | |
89 "Construct a new syntax table and return it.\n\ | |
90 It is a copy of the TABLE, which defaults to the standard syntax table.") | |
91 (table) | |
92 Lisp_Object table; | |
93 { | |
94 Lisp_Object size, val; | |
95 XFASTINT (size) = 0400; | |
96 XFASTINT (val) = 0; | |
97 val = Fmake_vector (size, val); | |
485 | 98 if (!NILP (table)) |
163 | 99 table = check_syntax_table (table); |
485 | 100 else if (NILP (Vstandard_syntax_table)) |
163 | 101 /* Can only be null during initialization */ |
102 return val; | |
103 else table = Vstandard_syntax_table; | |
104 | |
105 bcopy (XVECTOR (table)->contents, | |
106 XVECTOR (val)->contents, 0400 * sizeof (Lisp_Object)); | |
107 return val; | |
108 } | |
109 | |
110 DEFUN ("set-syntax-table", Fset_syntax_table, Sset_syntax_table, 1, 1, 0, | |
111 "Select a new syntax table for the current buffer.\n\ | |
112 One argument, a syntax table.") | |
113 (table) | |
114 Lisp_Object table; | |
115 { | |
116 table = check_syntax_table (table); | |
117 current_buffer->syntax_table = table; | |
118 /* Indicate that this buffer now has a specified syntax table. */ | |
119 current_buffer->local_var_flags |= buffer_local_flags.syntax_table; | |
120 return table; | |
121 } | |
122 | |
123 /* Convert a letter which signifies a syntax code | |
124 into the code it signifies. | |
125 This is used by modify-syntax-entry, and other things. */ | |
126 | |
127 unsigned char syntax_spec_code[0400] = | |
128 { 0377, 0377, 0377, 0377, 0377, 0377, 0377, 0377, | |
129 0377, 0377, 0377, 0377, 0377, 0377, 0377, 0377, | |
130 0377, 0377, 0377, 0377, 0377, 0377, 0377, 0377, | |
131 0377, 0377, 0377, 0377, 0377, 0377, 0377, 0377, | |
132 (char) Swhitespace, 0377, (char) Sstring, 0377, | |
133 (char) Smath, 0377, 0377, (char) Squote, | |
134 (char) Sopen, (char) Sclose, 0377, 0377, | |
135 0377, (char) Swhitespace, (char) Spunct, (char) Scharquote, | |
136 0377, 0377, 0377, 0377, 0377, 0377, 0377, 0377, | |
137 0377, 0377, 0377, 0377, | |
138 (char) Scomment, 0377, (char) Sendcomment, 0377, | |
139 0377, 0377, 0377, 0377, 0377, 0377, 0377, 0377, /* @, A, ... */ | |
140 0377, 0377, 0377, 0377, 0377, 0377, 0377, 0377, | |
141 0377, 0377, 0377, 0377, 0377, 0377, 0377, (char) Sword, | |
142 0377, 0377, 0377, 0377, (char) Sescape, 0377, 0377, (char) Ssymbol, | |
143 0377, 0377, 0377, 0377, 0377, 0377, 0377, 0377, /* `, a, ... */ | |
144 0377, 0377, 0377, 0377, 0377, 0377, 0377, 0377, | |
145 0377, 0377, 0377, 0377, 0377, 0377, 0377, (char) Sword, | |
146 0377, 0377, 0377, 0377, 0377, 0377, 0377, 0377 | |
147 }; | |
148 | |
149 /* Indexed by syntax code, give the letter that describes it. */ | |
150 | |
151 char syntax_code_spec[13] = | |
152 { | |
153 ' ', '.', 'w', '_', '(', ')', '\'', '\"', '$', '\\', '/', '<', '>' | |
154 }; | |
155 | |
156 DEFUN ("char-syntax", Fchar_syntax, Schar_syntax, 1, 1, 0, | |
157 "Return the syntax code of CHAR, described by a character.\n\ | |
158 For example, if CHAR is a word constituent, the character `?w' is returned.\n\ | |
159 The characters that correspond to various syntax codes\n\ | |
160 are listed in the documentation of `modify-syntax-entry'.") | |
161 (ch) | |
162 Lisp_Object ch; | |
163 { | |
164 CHECK_NUMBER (ch, 0); | |
165 return make_number (syntax_code_spec[(int) SYNTAX (0xFF & XINT (ch))]); | |
166 } | |
167 | |
168 /* This comment supplies the doc string for modify-syntax-entry, | |
169 for make-docfile to see. We cannot put this in the real DEFUN | |
170 due to limits in the Unix cpp. | |
171 | |
172 DEFUN ("modify-syntax-entry", foo, bar, 0, 0, 0, | |
173 "Set syntax for character CHAR according to string S.\n\ | |
174 The syntax is changed only for table TABLE, which defaults to\n\ | |
175 the current buffer's syntax table.\n\ | |
176 The first character of S should be one of the following:\n\ | |
624 | 177 Space or - whitespace syntax. w word constituent.\n\ |
178 _ symbol constituent. . punctuation.\n\ | |
179 ( open-parenthesis. ) close-parenthesis.\n\ | |
180 \" string quote. \\ escape.\n\ | |
181 $ paired delimiter. ' expression quote or prefix operator.\n\ | |
182 < comment starter. > comment ender.\n\ | |
183 / character-quote.\n\ | |
163 | 184 Only single-character comment start and end sequences are represented thus.\n\ |
185 Two-character sequences are represented as described below.\n\ | |
186 The second character of S is the matching parenthesis,\n\ | |
187 used only if the first character is `(' or `)'.\n\ | |
188 Any additional characters are flags.\n\ | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
189 Defined flags are the characters 1, 2, 3, 4, b, and p.\n\ |
163 | 190 1 means C is the start of a two-char comment start sequence.\n\ |
191 2 means C is the second character of such a sequence.\n\ | |
192 3 means C is the start of a two-char comment end sequence.\n\ | |
193 4 means C is the second character of such a sequence.\n\ | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
194 \n\ |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
195 There can be up to two orthogonal comment sequences. This is to support\n\ |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
196 language modes such as C++. By default, all comment sequences are of style\n\ |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
197 a, but you can set the comment sequence style to b (on the second character of a\n\ |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
198 comment-start, or the first character of a comment-end sequence) by using\n\ |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
199 this flag:\n\ |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
200 b means C is part of comment sequence b.\n\ |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
201 \n\ |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
202 p means C is a prefix character for `backward-prefix-chars';\n\ |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
203 such characters are treated as whitespace when they occur\n\ |
163 | 204 between expressions.") |
205 | |
206 */ | |
207 | |
208 DEFUN ("modify-syntax-entry", Fmodify_syntax_entry, Smodify_syntax_entry, 2, 3, | |
209 /* I really don't know why this is interactive | |
210 help-form should at least be made useful whilst reading the second arg | |
211 */ | |
212 "cSet syntax for character: \nsSet syntax for %s to: ", | |
213 0 /* See immediately above */) | |
214 (c, newentry, syntax_table) | |
215 Lisp_Object c, newentry, syntax_table; | |
216 { | |
217 register unsigned char *p, match; | |
218 register enum syntaxcode code; | |
219 Lisp_Object val; | |
220 | |
221 CHECK_NUMBER (c, 0); | |
222 CHECK_STRING (newentry, 1); | |
485 | 223 if (NILP (syntax_table)) |
163 | 224 syntax_table = current_buffer->syntax_table; |
225 else | |
226 syntax_table = check_syntax_table (syntax_table); | |
227 | |
228 p = XSTRING (newentry)->data; | |
229 code = (enum syntaxcode) syntax_spec_code[*p++]; | |
230 if (((int) code & 0377) == 0377) | |
231 error ("invalid syntax description letter: %c", c); | |
232 | |
233 match = *p; | |
234 if (match) p++; | |
235 if (match == ' ') match = 0; | |
236 | |
237 XFASTINT (val) = (match << 8) + (int) code; | |
238 while (*p) | |
239 switch (*p++) | |
240 { | |
241 case '1': | |
242 XFASTINT (val) |= 1 << 16; | |
243 break; | |
244 | |
245 case '2': | |
246 XFASTINT (val) |= 1 << 17; | |
247 break; | |
248 | |
249 case '3': | |
250 XFASTINT (val) |= 1 << 18; | |
251 break; | |
252 | |
253 case '4': | |
254 XFASTINT (val) |= 1 << 19; | |
255 break; | |
256 | |
257 case 'p': | |
258 XFASTINT (val) |= 1 << 20; | |
259 break; | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
260 |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
261 case 'b': |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
262 XFASTINT (val) |= 1 << 21; |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
263 break; |
163 | 264 } |
265 | |
266 XVECTOR (syntax_table)->contents[0xFF & XINT (c)] = val; | |
267 | |
268 return Qnil; | |
269 } | |
270 | |
271 /* Dump syntax table to buffer in human-readable format */ | |
272 | |
273 describe_syntax (value) | |
274 Lisp_Object value; | |
275 { | |
276 register enum syntaxcode code; | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
277 char desc, match, start1, start2, end1, end2, prefix, comstyle; |
163 | 278 char str[2]; |
279 | |
280 Findent_to (make_number (16), make_number (1)); | |
281 | |
282 if (XTYPE (value) != Lisp_Int) | |
283 { | |
284 insert_string ("invalid"); | |
285 return; | |
286 } | |
287 | |
288 code = (enum syntaxcode) (XINT (value) & 0377); | |
289 match = (XINT (value) >> 8) & 0377; | |
290 start1 = (XINT (value) >> 16) & 1; | |
291 start2 = (XINT (value) >> 17) & 1; | |
292 end1 = (XINT (value) >> 18) & 1; | |
293 end2 = (XINT (value) >> 19) & 1; | |
294 prefix = (XINT (value) >> 20) & 1; | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
295 comstyle = (XINT (value) >> 21) & 1; |
163 | 296 |
297 if ((int) code < 0 || (int) code >= (int) Smax) | |
298 { | |
299 insert_string ("invalid"); | |
300 return; | |
301 } | |
302 desc = syntax_code_spec[(int) code]; | |
303 | |
304 str[0] = desc, str[1] = 0; | |
305 insert (str, 1); | |
306 | |
307 str[0] = match ? match : ' '; | |
308 insert (str, 1); | |
309 | |
310 | |
311 if (start1) | |
312 insert ("1", 1); | |
313 if (start2) | |
314 insert ("2", 1); | |
315 | |
316 if (end1) | |
317 insert ("3", 1); | |
318 if (end2) | |
319 insert ("4", 1); | |
320 | |
321 if (prefix) | |
322 insert ("p", 1); | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
323 if (comstyle) |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
324 insert ("b", 1); |
163 | 325 |
326 insert_string ("\twhich means: "); | |
327 | |
328 #ifdef SWITCH_ENUM_BUG | |
329 switch ((int) code) | |
330 #else | |
331 switch (code) | |
332 #endif | |
333 { | |
334 case Swhitespace: | |
335 insert_string ("whitespace"); break; | |
336 case Spunct: | |
337 insert_string ("punctuation"); break; | |
338 case Sword: | |
339 insert_string ("word"); break; | |
340 case Ssymbol: | |
341 insert_string ("symbol"); break; | |
342 case Sopen: | |
343 insert_string ("open"); break; | |
344 case Sclose: | |
345 insert_string ("close"); break; | |
346 case Squote: | |
347 insert_string ("quote"); break; | |
348 case Sstring: | |
349 insert_string ("string"); break; | |
350 case Smath: | |
351 insert_string ("math"); break; | |
352 case Sescape: | |
353 insert_string ("escape"); break; | |
354 case Scharquote: | |
355 insert_string ("charquote"); break; | |
356 case Scomment: | |
357 insert_string ("comment"); break; | |
358 case Sendcomment: | |
359 insert_string ("endcomment"); break; | |
360 default: | |
361 insert_string ("invalid"); | |
362 return; | |
363 } | |
364 | |
365 if (match) | |
366 { | |
367 insert_string (", matches "); | |
368 | |
369 str[0] = match, str[1] = 0; | |
370 insert (str, 1); | |
371 } | |
372 | |
373 if (start1) | |
374 insert_string (",\n\t is the first character of a comment-start sequence"); | |
375 if (start2) | |
376 insert_string (",\n\t is the second character of a comment-start sequence"); | |
377 | |
378 if (end1) | |
379 insert_string (",\n\t is the first character of a comment-end sequence"); | |
380 if (end2) | |
381 insert_string (",\n\t is the second character of a comment-end sequence"); | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
382 if (comstyle) |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
383 insert_string (" (comment style b)"); |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
384 |
163 | 385 if (prefix) |
386 insert_string (",\n\t is a prefix character for `backward-prefix-chars'"); | |
387 | |
388 insert_string ("\n"); | |
389 } | |
390 | |
391 Lisp_Object | |
392 describe_syntax_1 (vector) | |
393 Lisp_Object vector; | |
394 { | |
395 struct buffer *old = current_buffer; | |
396 set_buffer_internal (XBUFFER (Vstandard_output)); | |
397 describe_vector (vector, Qnil, describe_syntax, 0, Qnil, Qnil); | |
398 set_buffer_internal (old); | |
399 return Qnil; | |
400 } | |
401 | |
402 DEFUN ("describe-syntax", Fdescribe_syntax, Sdescribe_syntax, 0, 0, "", | |
403 "Describe the syntax specifications in the syntax table.\n\ | |
404 The descriptions are inserted in a buffer, which is then displayed.") | |
405 () | |
406 { | |
407 internal_with_output_to_temp_buffer | |
408 ("*Help*", describe_syntax_1, current_buffer->syntax_table); | |
409 | |
410 return Qnil; | |
411 } | |
412 | |
413 /* Return the position across COUNT words from FROM. | |
414 If that many words cannot be found before the end of the buffer, return 0. | |
415 COUNT negative means scan backward and stop at word beginning. */ | |
416 | |
417 scan_words (from, count) | |
418 register int from, count; | |
419 { | |
420 register int beg = BEGV; | |
421 register int end = ZV; | |
422 register int code; | |
423 | |
424 immediate_quit = 1; | |
425 QUIT; | |
426 | |
427 while (count > 0) | |
428 { | |
429 while (1) | |
430 { | |
431 if (from == end) | |
432 { | |
433 immediate_quit = 0; | |
434 return 0; | |
435 } | |
436 code = SYNTAX (FETCH_CHAR (from)); | |
437 if (words_include_escapes | |
438 && (code == Sescape || code == Scharquote)) | |
439 break; | |
440 if (code == Sword) | |
441 break; | |
442 from++; | |
443 } | |
444 while (1) | |
445 { | |
446 if (from == end) break; | |
447 code = SYNTAX (FETCH_CHAR (from)); | |
448 if (!(words_include_escapes | |
449 && (code == Sescape || code == Scharquote))) | |
450 if (code != Sword) | |
451 break; | |
452 from++; | |
453 } | |
454 count--; | |
455 } | |
456 while (count < 0) | |
457 { | |
458 while (1) | |
459 { | |
460 if (from == beg) | |
461 { | |
462 immediate_quit = 0; | |
463 return 0; | |
464 } | |
465 code = SYNTAX (FETCH_CHAR (from - 1)); | |
466 if (words_include_escapes | |
467 && (code == Sescape || code == Scharquote)) | |
468 break; | |
469 if (code == Sword) | |
470 break; | |
471 from--; | |
472 } | |
473 while (1) | |
474 { | |
475 if (from == beg) break; | |
476 code = SYNTAX (FETCH_CHAR (from - 1)); | |
477 if (!(words_include_escapes | |
478 && (code == Sescape || code == Scharquote))) | |
479 if (code != Sword) | |
480 break; | |
481 from--; | |
482 } | |
483 count++; | |
484 } | |
485 | |
486 immediate_quit = 0; | |
487 | |
488 return from; | |
489 } | |
490 | |
491 DEFUN ("forward-word", Fforward_word, Sforward_word, 1, 1, "p", | |
492 "Move point forward ARG words (backward if ARG is negative).\n\ | |
493 Normally returns t.\n\ | |
494 If an edge of the buffer is reached, point is left there\n\ | |
495 and nil is returned.") | |
496 (count) | |
497 Lisp_Object count; | |
498 { | |
499 int val; | |
500 CHECK_NUMBER (count, 0); | |
501 | |
502 if (!(val = scan_words (point, XINT (count)))) | |
503 { | |
504 SET_PT (XINT (count) > 0 ? ZV : BEGV); | |
505 return Qnil; | |
506 } | |
507 SET_PT (val); | |
508 return Qt; | |
509 } | |
510 | |
511 int parse_sexp_ignore_comments; | |
512 | |
513 Lisp_Object | |
514 scan_lists (from, count, depth, sexpflag) | |
515 register int from; | |
516 int count, depth, sexpflag; | |
517 { | |
518 Lisp_Object val; | |
519 register int stop; | |
520 register int c; | |
521 char stringterm; | |
522 int quoted; | |
523 int mathexit = 0; | |
524 register enum syntaxcode code; | |
525 int min_depth = depth; /* Err out if depth gets less than this. */ | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
526 int comstyle = 0; /* style of comment encountered */ |
163 | 527 |
528 if (depth > 0) min_depth = 0; | |
529 | |
530 immediate_quit = 1; | |
531 QUIT; | |
532 | |
533 while (count > 0) | |
534 { | |
535 stop = ZV; | |
536 while (from < stop) | |
537 { | |
538 c = FETCH_CHAR (from); | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
539 code = SYNTAX (c); |
163 | 540 from++; |
541 if (from < stop && SYNTAX_COMSTART_FIRST (c) | |
542 && SYNTAX_COMSTART_SECOND (FETCH_CHAR (from)) | |
543 && parse_sexp_ignore_comments) | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
544 { |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
545 /* we have encountered a comment start sequence and we |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
546 are ignoring all text inside comments. we must record |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
547 the comment style this sequence begins so that later, |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
548 only a comment end of the same style actually ends |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
549 the comment section */ |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
550 code = Scomment; |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
551 comstyle = SYNTAX_COMMENT_STYLE (FETCH_CHAR (from)); |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
552 from++; |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
553 } |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
554 |
163 | 555 if (SYNTAX_PREFIX (c)) |
556 continue; | |
557 | |
558 #ifdef SWITCH_ENUM_BUG | |
559 switch ((int) code) | |
560 #else | |
561 switch (code) | |
562 #endif | |
563 { | |
564 case Sescape: | |
565 case Scharquote: | |
566 if (from == stop) goto lose; | |
567 from++; | |
568 /* treat following character as a word constituent */ | |
569 case Sword: | |
570 case Ssymbol: | |
571 if (depth || !sexpflag) break; | |
572 /* This word counts as a sexp; return at end of it. */ | |
573 while (from < stop) | |
574 { | |
575 #ifdef SWITCH_ENUM_BUG | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
576 switch ((int) SYNTAX (FETCH_CHAR (from))) |
163 | 577 #else |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
578 switch (SYNTAX (FETCH_CHAR (from))) |
163 | 579 #endif |
580 { | |
581 case Scharquote: | |
582 case Sescape: | |
583 from++; | |
584 if (from == stop) goto lose; | |
585 break; | |
586 case Sword: | |
587 case Ssymbol: | |
588 case Squote: | |
589 break; | |
590 default: | |
591 goto done; | |
592 } | |
593 from++; | |
594 } | |
595 goto done; | |
596 | |
597 case Scomment: | |
598 if (!parse_sexp_ignore_comments) break; | |
599 while (1) | |
600 { | |
601 if (from == stop) goto done; | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
602 c = FETCH_CHAR (from); |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
603 if (SYNTAX (c) == Sendcomment |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
604 && SYNTAX_COMMENT_STYLE (c) == comstyle) |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
605 /* we have encountered a comment end of the same style |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
606 as the comment sequence which began this comment |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
607 section */ |
163 | 608 break; |
609 from++; | |
610 if (from < stop && SYNTAX_COMEND_FIRST (c) | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
611 && SYNTAX_COMEND_SECOND (FETCH_CHAR (from)) |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
612 && SYNTAX_COMMENT_STYLE (c) == comstyle) |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
613 /* we have encountered a comment end of the same style |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
614 as the comment sequence which began this comment |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
615 section */ |
163 | 616 { from++; break; } |
617 } | |
618 break; | |
619 | |
620 case Smath: | |
621 if (!sexpflag) | |
622 break; | |
623 if (from != stop && c == FETCH_CHAR (from)) | |
624 from++; | |
625 if (mathexit) | |
626 { | |
627 mathexit = 0; | |
628 goto close1; | |
629 } | |
630 mathexit = 1; | |
631 | |
632 case Sopen: | |
633 if (!++depth) goto done; | |
634 break; | |
635 | |
636 case Sclose: | |
637 close1: | |
638 if (!--depth) goto done; | |
639 if (depth < min_depth) | |
640 error ("Containing expression ends prematurely"); | |
641 break; | |
642 | |
643 case Sstring: | |
644 stringterm = FETCH_CHAR (from - 1); | |
645 while (1) | |
646 { | |
647 if (from >= stop) goto lose; | |
648 if (FETCH_CHAR (from) == stringterm) break; | |
649 #ifdef SWITCH_ENUM_BUG | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
650 switch ((int) SYNTAX (FETCH_CHAR (from))) |
163 | 651 #else |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
652 switch (SYNTAX (FETCH_CHAR (from))) |
163 | 653 #endif |
654 { | |
655 case Scharquote: | |
656 case Sescape: | |
657 from++; | |
658 } | |
659 from++; | |
660 } | |
661 from++; | |
662 if (!depth && sexpflag) goto done; | |
663 break; | |
664 } | |
665 } | |
666 | |
667 /* Reached end of buffer. Error if within object, return nil if between */ | |
668 if (depth) goto lose; | |
669 | |
670 immediate_quit = 0; | |
671 return Qnil; | |
672 | |
673 /* End of object reached */ | |
674 done: | |
675 count--; | |
676 } | |
677 | |
678 while (count < 0) | |
679 { | |
680 stop = BEGV; | |
681 while (from > stop) | |
682 { | |
683 from--; | |
684 if (quoted = char_quoted (from)) | |
685 from--; | |
686 c = FETCH_CHAR (from); | |
687 code = SYNTAX (c); | |
688 if (from > stop && SYNTAX_COMEND_SECOND (c) | |
689 && SYNTAX_COMEND_FIRST (FETCH_CHAR (from - 1)) | |
690 && !char_quoted (from - 1) | |
691 && parse_sexp_ignore_comments) | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
692 { |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
693 /* we must record the comment style encountered so that |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
694 later, we can match only the proper comment begin |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
695 sequence of the same style */ |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
696 code = Sendcomment; |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
697 comstyle = SYNTAX_COMMENT_STYLE (FETCH_CHAR (from - 1)); |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
698 from--; |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
699 } |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
700 |
163 | 701 if (SYNTAX_PREFIX (c)) |
702 continue; | |
703 | |
704 #ifdef SWITCH_ENUM_BUG | |
705 switch ((int) (quoted ? Sword : code)) | |
706 #else | |
707 switch (quoted ? Sword : code) | |
708 #endif | |
709 { | |
710 case Sword: | |
711 case Ssymbol: | |
712 if (depth || !sexpflag) break; | |
713 /* This word counts as a sexp; count object finished after passing it. */ | |
714 while (from > stop) | |
715 { | |
716 quoted = char_quoted (from - 1); | |
717 if (quoted) | |
718 from--; | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
719 if (! (quoted || SYNTAX (FETCH_CHAR (from - 1)) == Sword |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
720 || SYNTAX (FETCH_CHAR (from - 1)) == Ssymbol |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
721 || SYNTAX (FETCH_CHAR (from - 1)) == Squote)) |
163 | 722 goto done2; |
723 from--; | |
724 } | |
725 goto done2; | |
726 | |
727 case Smath: | |
728 if (!sexpflag) | |
729 break; | |
730 if (from != stop && c == FETCH_CHAR (from - 1)) | |
731 from--; | |
732 if (mathexit) | |
733 { | |
734 mathexit = 0; | |
735 goto open2; | |
736 } | |
737 mathexit = 1; | |
738 | |
739 case Sclose: | |
740 if (!++depth) goto done2; | |
741 break; | |
742 | |
743 case Sopen: | |
744 open2: | |
745 if (!--depth) goto done2; | |
746 if (depth < min_depth) | |
747 error ("Containing expression ends prematurely"); | |
748 break; | |
749 | |
750 case Sendcomment: | |
751 if (!parse_sexp_ignore_comments) | |
752 break; | |
753 /* Look back, counting the parity of string-quotes, | |
754 and recording the comment-starters seen. | |
755 When we reach a safe place, assume that's not in a string; | |
756 then step the main scan to the earliest comment-starter seen | |
757 an even number of string quotes away from the safe place. | |
758 | |
759 OFROM[I] is position of the earliest comment-starter seen | |
760 which is I+2X quotes from the comment-end. | |
761 PARITY is current parity of quotes from the comment end. */ | |
762 { | |
763 int ofrom[2]; | |
764 int parity = 0; | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
765 char my_stringend = 0; |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
766 int string_lossage = 0; |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
767 int comment_end = from; |
163 | 768 |
769 ofrom[0] = ofrom[1] = from; | |
770 | |
771 /* At beginning of range to scan, we're outside of strings; | |
772 that determines quote parity to the comment-end. */ | |
773 while (from != stop) | |
774 { | |
775 /* Move back and examine a character. */ | |
776 from--; | |
777 | |
778 c = FETCH_CHAR (from); | |
779 code = SYNTAX (c); | |
780 | |
781 /* If this char is the second of a 2-char comment sequence, | |
782 back up and give the pair the appropriate syntax. */ | |
783 if (from > stop && SYNTAX_COMEND_SECOND (c) | |
784 && SYNTAX_COMEND_FIRST (FETCH_CHAR (from - 1))) | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
785 { |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
786 code = Sendcomment; |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
787 from--; |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
788 } |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
789 |
163 | 790 else if (from > stop && SYNTAX_COMSTART_SECOND (c) |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
791 && SYNTAX_COMSTART_FIRST (FETCH_CHAR (from - 1)) |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
792 && comstyle == SYNTAX_COMMENT_STYLE (c)) |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
793 { |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
794 code = Scomment; |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
795 from--; |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
796 } |
163 | 797 |
798 /* Ignore escaped characters. */ | |
799 if (char_quoted (from)) | |
800 continue; | |
801 | |
802 /* Track parity of quotes between here and comment-end. */ | |
803 if (code == Sstring) | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
804 { |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
805 parity ^= 1; |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
806 if (my_stringend == 0) |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
807 my_stringend = c; |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
808 /* We have two kinds of string delimiters. |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
809 There's no way to grok this scanning backwards. */ |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
810 else if (my_stringend != c) |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
811 string_lossage = 1; |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
812 } |
163 | 813 |
814 /* Record comment-starters according to that | |
815 quote-parity to the comment-end. */ | |
816 if (code == Scomment) | |
817 ofrom[parity] = from; | |
818 | |
819 /* If we come to another comment-end, | |
820 assume it's not inside a string. | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
821 That determines the quote parity to the comment-end. |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
822 Note that the comment style this character ends must |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
823 match the style that we have begun */ |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
824 if (code == Sendcomment |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
825 && SYNTAX_COMMENT_STYLE (FETCH_CHAR (from)) == comstyle) |
163 | 826 break; |
827 } | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
828 if (string_lossage) |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
829 { |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
830 /* We had two kinds of string delimiters mixed up |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
831 together. Decode this going forwards. |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
832 Scan fwd from the previous comment ender |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
833 to the one in question; this records where we |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
834 last passed a comment starter. */ |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
835 struct lisp_parse_state state; |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
836 scan_sexps_forward (&state, from + 1, comment_end - 1, |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
837 -10000, 0, Qnil); |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
838 if (state.incomment) |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
839 from = state.comstart; |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
840 else |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
841 /* We can't grok this as a comment; scan it normally. */ |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
842 from = comment_end; |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
843 } |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
844 else |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
845 from = ofrom[parity]; |
163 | 846 } |
847 break; | |
848 | |
849 case Sstring: | |
850 stringterm = FETCH_CHAR (from); | |
851 while (1) | |
852 { | |
853 if (from == stop) goto lose; | |
854 if (!char_quoted (from - 1) | |
855 && stringterm == FETCH_CHAR (from - 1)) | |
856 break; | |
857 from--; | |
858 } | |
859 from--; | |
860 if (!depth && sexpflag) goto done2; | |
861 break; | |
862 } | |
863 } | |
864 | |
865 /* Reached start of buffer. Error if within object, return nil if between */ | |
866 if (depth) goto lose; | |
867 | |
868 immediate_quit = 0; | |
869 return Qnil; | |
870 | |
871 done2: | |
872 count++; | |
873 } | |
874 | |
875 | |
876 immediate_quit = 0; | |
877 XFASTINT (val) = from; | |
878 return val; | |
879 | |
880 lose: | |
881 error ("Unbalanced parentheses"); | |
882 /* NOTREACHED */ | |
883 } | |
884 | |
885 char_quoted (pos) | |
886 register int pos; | |
887 { | |
888 register enum syntaxcode code; | |
889 register int beg = BEGV; | |
890 register int quoted = 0; | |
891 | |
892 while (pos > beg | |
893 && ((code = SYNTAX (FETCH_CHAR (pos - 1))) == Scharquote | |
894 || code == Sescape)) | |
895 pos--, quoted = !quoted; | |
896 return quoted; | |
897 } | |
898 | |
899 DEFUN ("scan-lists", Fscan_lists, Sscan_lists, 3, 3, 0, | |
900 "Scan from character number FROM by COUNT lists.\n\ | |
901 Returns the character number of the position thus found.\n\ | |
902 \n\ | |
903 If DEPTH is nonzero, paren depth begins counting from that value,\n\ | |
904 only places where the depth in parentheses becomes zero\n\ | |
905 are candidates for stopping; COUNT such places are counted.\n\ | |
906 Thus, a positive value for DEPTH means go out levels.\n\ | |
907 \n\ | |
908 Comments are ignored if `parse-sexp-ignore-comments' is non-nil.\n\ | |
909 \n\ | |
910 If the beginning or end of (the accessible part of) the buffer is reached\n\ | |
911 and the depth is wrong, an error is signaled.\n\ | |
912 If the depth is right but the count is not used up, nil is returned.") | |
913 (from, count, depth) | |
914 Lisp_Object from, count, depth; | |
915 { | |
916 CHECK_NUMBER (from, 0); | |
917 CHECK_NUMBER (count, 1); | |
918 CHECK_NUMBER (depth, 2); | |
919 | |
920 return scan_lists (XINT (from), XINT (count), XINT (depth), 0); | |
921 } | |
922 | |
923 DEFUN ("scan-sexps", Fscan_sexps, Sscan_sexps, 2, 2, 0, | |
924 "Scan from character number FROM by COUNT balanced expressions.\n\ | |
925 If COUNT is negative, scan backwards.\n\ | |
926 Returns the character number of the position thus found.\n\ | |
927 \n\ | |
928 Comments are ignored if `parse-sexp-ignore-comments' is non-nil.\n\ | |
929 \n\ | |
930 If the beginning or end of (the accessible part of) the buffer is reached\n\ | |
931 in the middle of a parenthetical grouping, an error is signaled.\n\ | |
932 If the beginning or end is reached between groupings\n\ | |
933 but before count is used up, nil is returned.") | |
934 (from, count) | |
935 Lisp_Object from, count; | |
936 { | |
937 CHECK_NUMBER (from, 0); | |
938 CHECK_NUMBER (count, 1); | |
939 | |
940 return scan_lists (XINT (from), XINT (count), 0, 1); | |
941 } | |
942 | |
943 DEFUN ("backward-prefix-chars", Fbackward_prefix_chars, Sbackward_prefix_chars, | |
944 0, 0, 0, | |
945 "Move point backward over any number of chars with prefix syntax.\n\ | |
946 This includes chars with \"quote\" or \"prefix\" syntax (' or p).") | |
947 () | |
948 { | |
949 int beg = BEGV; | |
950 int pos = point; | |
951 | |
952 while (pos > beg && !char_quoted (pos - 1) | |
953 && (SYNTAX (FETCH_CHAR (pos - 1)) == Squote | |
954 || SYNTAX_PREFIX (FETCH_CHAR (pos - 1)))) | |
955 pos--; | |
956 | |
957 SET_PT (pos); | |
958 | |
959 return Qnil; | |
960 } | |
961 | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
962 /* Parse forward from FROM to END, |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
963 assuming that FROM has state OLDSTATE (nil means FROM is start of function), |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
964 and return a description of the state of the parse at END. |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
965 If STOPBEFORE is nonzero, stop at the start of an atom. */ |
163 | 966 |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
967 scan_sexps_forward (stateptr, from, end, targetdepth, stopbefore, oldstate) |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
968 struct lisp_parse_state *stateptr; |
163 | 969 register int from; |
970 int end, targetdepth, stopbefore; | |
971 Lisp_Object oldstate; | |
972 { | |
973 struct lisp_parse_state state; | |
974 | |
975 register enum syntaxcode code; | |
976 struct level { int last, prev; }; | |
977 struct level levelstart[100]; | |
978 register struct level *curlevel = levelstart; | |
979 struct level *endlevel = levelstart + 100; | |
980 char prev; | |
981 register int depth; /* Paren depth of current scanning location. | |
982 level - levelstart equals this except | |
983 when the depth becomes negative. */ | |
984 int mindepth; /* Lowest DEPTH value seen. */ | |
985 int start_quoted = 0; /* Nonzero means starting after a char quote */ | |
986 Lisp_Object tem; | |
987 | |
988 immediate_quit = 1; | |
989 QUIT; | |
990 | |
485 | 991 if (NILP (oldstate)) |
163 | 992 { |
993 depth = 0; | |
994 state.instring = -1; | |
995 state.incomment = 0; | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
996 state.comstyle = 0; /* comment style a by default */ |
163 | 997 } |
998 else | |
999 { | |
1000 tem = Fcar (oldstate); | |
485 | 1001 if (!NILP (tem)) |
163 | 1002 depth = XINT (tem); |
1003 else | |
1004 depth = 0; | |
1005 | |
1006 oldstate = Fcdr (oldstate); | |
1007 oldstate = Fcdr (oldstate); | |
1008 oldstate = Fcdr (oldstate); | |
1009 tem = Fcar (oldstate); | |
485 | 1010 state.instring = !NILP (tem) ? XINT (tem) : -1; |
163 | 1011 |
1012 oldstate = Fcdr (oldstate); | |
1013 tem = Fcar (oldstate); | |
485 | 1014 state.incomment = !NILP (tem); |
163 | 1015 |
1016 oldstate = Fcdr (oldstate); | |
1017 tem = Fcar (oldstate); | |
485 | 1018 start_quoted = !NILP (tem); |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1019 |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1020 /* if the eight element of the list is nil, we are in comment |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1021 style a. if it is non-nil, we are in comment style b */ |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1022 oldstate = Fcdr (oldstate); |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1023 oldstate = Fcdr (oldstate); |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1024 oldstate = Fcdr (oldstate); |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1025 tem = Fcar (oldstate); |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1026 state.comstyle = !NILP (tem); |
163 | 1027 } |
1028 state.quoted = 0; | |
1029 mindepth = depth; | |
1030 | |
1031 curlevel->prev = -1; | |
1032 curlevel->last = -1; | |
1033 | |
1034 /* Enter the loop at a place appropriate for initial state. */ | |
1035 | |
1036 if (state.incomment) goto startincomment; | |
1037 if (state.instring >= 0) | |
1038 { | |
1039 if (start_quoted) goto startquotedinstring; | |
1040 goto startinstring; | |
1041 } | |
1042 if (start_quoted) goto startquoted; | |
1043 | |
1044 while (from < end) | |
1045 { | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1046 code = SYNTAX (FETCH_CHAR (from)); |
163 | 1047 from++; |
1048 if (from < end && SYNTAX_COMSTART_FIRST (FETCH_CHAR (from - 1)) | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1049 && SYNTAX_COMSTART_SECOND (FETCH_CHAR (from))) |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1050 { |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1051 /* Record the comment style we have entered so that only |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1052 the comment-end sequence of the same style actually |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1053 terminates the comment section. */ |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1054 code = Scomment; |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1055 state.comstyle = SYNTAX_COMMENT_STYLE (FETCH_CHAR (from)); |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1056 from++; |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1057 } |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1058 |
163 | 1059 if (SYNTAX_PREFIX (FETCH_CHAR (from - 1))) |
1060 continue; | |
1061 #ifdef SWITCH_ENUM_BUG | |
1062 switch ((int) code) | |
1063 #else | |
1064 switch (code) | |
1065 #endif | |
1066 { | |
1067 case Sescape: | |
1068 case Scharquote: | |
1069 if (stopbefore) goto stop; /* this arg means stop at sexp start */ | |
1070 curlevel->last = from - 1; | |
1071 startquoted: | |
1072 if (from == end) goto endquoted; | |
1073 from++; | |
1074 goto symstarted; | |
1075 /* treat following character as a word constituent */ | |
1076 case Sword: | |
1077 case Ssymbol: | |
1078 if (stopbefore) goto stop; /* this arg means stop at sexp start */ | |
1079 curlevel->last = from - 1; | |
1080 symstarted: | |
1081 while (from < end) | |
1082 { | |
1083 #ifdef SWITCH_ENUM_BUG | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1084 switch ((int) SYNTAX (FETCH_CHAR (from))) |
163 | 1085 #else |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1086 switch (SYNTAX (FETCH_CHAR (from))) |
163 | 1087 #endif |
1088 { | |
1089 case Scharquote: | |
1090 case Sescape: | |
1091 from++; | |
1092 if (from == end) goto endquoted; | |
1093 break; | |
1094 case Sword: | |
1095 case Ssymbol: | |
1096 case Squote: | |
1097 break; | |
1098 default: | |
1099 goto symdone; | |
1100 } | |
1101 from++; | |
1102 } | |
1103 symdone: | |
1104 curlevel->prev = curlevel->last; | |
1105 break; | |
1106 | |
1107 case Scomment: | |
1108 state.incomment = 1; | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1109 state.comstart = from; |
163 | 1110 startincomment: |
1111 while (1) | |
1112 { | |
1113 if (from == end) goto done; | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1114 prev = FETCH_CHAR (from); |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1115 if (SYNTAX (prev) == Sendcomment |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1116 && SYNTAX_COMMENT_STYLE (prev) == state.comstyle) |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1117 /* Only terminate the comment section if the endcomment |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1118 of the same style as the start sequence has been |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1119 encountered. */ |
163 | 1120 break; |
1121 from++; | |
1122 if (from < end && SYNTAX_COMEND_FIRST (prev) | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1123 && SYNTAX_COMEND_SECOND (FETCH_CHAR (from)) |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1124 && SYNTAX_COMMENT_STYLE (prev) == state.comstyle) |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1125 /* Only terminate the comment section if the end-comment |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1126 sequence of the same style as the start sequence has |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1127 been encountered. */ |
163 | 1128 { from++; break; } |
1129 } | |
1130 state.incomment = 0; | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1131 state.comstyle = 0; /* reset the comment style */ |
163 | 1132 break; |
1133 | |
1134 case Sopen: | |
1135 if (stopbefore) goto stop; /* this arg means stop at sexp start */ | |
1136 depth++; | |
1137 /* curlevel++->last ran into compiler bug on Apollo */ | |
1138 curlevel->last = from - 1; | |
1139 if (++curlevel == endlevel) | |
1140 error ("Nesting too deep for parser"); | |
1141 curlevel->prev = -1; | |
1142 curlevel->last = -1; | |
1143 if (!--targetdepth) goto done; | |
1144 break; | |
1145 | |
1146 case Sclose: | |
1147 depth--; | |
1148 if (depth < mindepth) | |
1149 mindepth = depth; | |
1150 if (curlevel != levelstart) | |
1151 curlevel--; | |
1152 curlevel->prev = curlevel->last; | |
1153 if (!++targetdepth) goto done; | |
1154 break; | |
1155 | |
1156 case Sstring: | |
1157 if (stopbefore) goto stop; /* this arg means stop at sexp start */ | |
1158 curlevel->last = from - 1; | |
1159 state.instring = FETCH_CHAR (from - 1); | |
1160 startinstring: | |
1161 while (1) | |
1162 { | |
1163 if (from >= end) goto done; | |
1164 if (FETCH_CHAR (from) == state.instring) break; | |
1165 #ifdef SWITCH_ENUM_BUG | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1166 switch ((int) SYNTAX (FETCH_CHAR (from))) |
163 | 1167 #else |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1168 switch (SYNTAX (FETCH_CHAR (from))) |
163 | 1169 #endif |
1170 { | |
1171 case Scharquote: | |
1172 case Sescape: | |
1173 from++; | |
1174 startquotedinstring: | |
1175 if (from >= end) goto endquoted; | |
1176 } | |
1177 from++; | |
1178 } | |
1179 state.instring = -1; | |
1180 curlevel->prev = curlevel->last; | |
1181 from++; | |
1182 break; | |
1183 | |
1184 case Smath: | |
1185 break; | |
1186 } | |
1187 } | |
1188 goto done; | |
1189 | |
1190 stop: /* Here if stopping before start of sexp. */ | |
1191 from--; /* We have just fetched the char that starts it; */ | |
1192 goto done; /* but return the position before it. */ | |
1193 | |
1194 endquoted: | |
1195 state.quoted = 1; | |
1196 done: | |
1197 state.depth = depth; | |
1198 state.mindepth = mindepth; | |
1199 state.thislevelstart = curlevel->prev; | |
1200 state.prevlevelstart | |
1201 = (curlevel == levelstart) ? -1 : (curlevel - 1)->last; | |
1202 state.location = from; | |
1203 immediate_quit = 0; | |
1204 | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1205 *stateptr = state; |
163 | 1206 } |
1207 | |
1208 /* This comment supplies the doc string for parse-partial-sexp, | |
1209 for make-docfile to see. We cannot put this in the real DEFUN | |
1210 due to limits in the Unix cpp. | |
1211 | |
726 | 1212 DEFUN ("parse-partial-sexp", Ffoo, Sfoo, 2, 5, 0, |
163 | 1213 "Parse Lisp syntax starting at FROM until TO; return status of parse at TO.\n\ |
1214 Parsing stops at TO or when certain criteria are met;\n\ | |
1215 point is set to where parsing stops.\n\ | |
1216 If fifth arg STATE is omitted or nil,\n\ | |
1217 parsing assumes that FROM is the beginning of a function.\n\ | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1218 Value is a list of eight elements describing final state of parsing:\n\ |
163 | 1219 1. depth in parens.\n\ |
1220 2. character address of start of innermost containing list; nil if none.\n\ | |
1221 3. character address of start of last complete sexp terminated.\n\ | |
1222 4. non-nil if inside a string.\n\ | |
1223 (it is the character that will terminate the string.)\n\ | |
1224 5. t if inside a comment.\n\ | |
1225 6. t if following a quote character.\n\ | |
1226 7. the minimum paren-depth encountered during this scan.\n\ | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1227 8. t if in a comment of style `b'.\n\ |
163 | 1228 If third arg TARGETDEPTH is non-nil, parsing stops if the depth\n\ |
1229 in parentheses becomes equal to TARGETDEPTH.\n\ | |
1230 Fourth arg STOPBEFORE non-nil means stop when come to\n\ | |
1231 any character that starts a sexp.\n\ | |
1232 Fifth arg STATE is a seven-list like what this function returns.\n\ | |
726 | 1233 It is used to initialize the state of the parse. Its second and third |
1234 elements are ignored.") | |
1235 (from, to, targetdepth, stopbefore, state) | |
163 | 1236 */ |
1237 | |
1238 DEFUN ("parse-partial-sexp", Fparse_partial_sexp, Sparse_partial_sexp, 2, 5, 0, | |
1239 0 /* See immediately above */) | |
1240 (from, to, targetdepth, stopbefore, oldstate) | |
1241 Lisp_Object from, to, targetdepth, stopbefore, oldstate; | |
1242 { | |
1243 struct lisp_parse_state state; | |
1244 int target; | |
1245 | |
485 | 1246 if (!NILP (targetdepth)) |
163 | 1247 { |
1248 CHECK_NUMBER (targetdepth, 3); | |
1249 target = XINT (targetdepth); | |
1250 } | |
1251 else | |
1252 target = -100000; /* We won't reach this depth */ | |
1253 | |
1254 validate_region (&from, &to); | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1255 scan_sexps_forward (&state, XINT (from), XINT (to), |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1256 target, !NILP (stopbefore), oldstate); |
163 | 1257 |
1258 SET_PT (state.location); | |
1259 | |
1260 return Fcons (make_number (state.depth), | |
1261 Fcons (state.prevlevelstart < 0 ? Qnil : make_number (state.prevlevelstart), | |
1262 Fcons (state.thislevelstart < 0 ? Qnil : make_number (state.thislevelstart), | |
1263 Fcons (state.instring >= 0 ? make_number (state.instring) : Qnil, | |
1264 Fcons (state.incomment ? Qt : Qnil, | |
1265 Fcons (state.quoted ? Qt : Qnil, | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1266 Fcons (make_number (state.mindepth), |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1267 Fcons (state.comstyle ? Qt : Qnil, |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1268 Qnil)))))))); |
163 | 1269 } |
1270 | |
1271 init_syntax_once () | |
1272 { | |
1273 register int i; | |
1274 register struct Lisp_Vector *v; | |
1275 | |
1276 /* Set this now, so first buffer creation can refer to it. */ | |
1277 /* Make it nil before calling copy-syntax-table | |
1278 so that copy-syntax-table will know not to try to copy from garbage */ | |
1279 Vstandard_syntax_table = Qnil; | |
1280 Vstandard_syntax_table = Fcopy_syntax_table (Qnil); | |
1281 | |
1282 v = XVECTOR (Vstandard_syntax_table); | |
1283 | |
1284 for (i = 'a'; i <= 'z'; i++) | |
1285 XFASTINT (v->contents[i]) = (int) Sword; | |
1286 for (i = 'A'; i <= 'Z'; i++) | |
1287 XFASTINT (v->contents[i]) = (int) Sword; | |
1288 for (i = '0'; i <= '9'; i++) | |
1289 XFASTINT (v->contents[i]) = (int) Sword; | |
1290 XFASTINT (v->contents['$']) = (int) Sword; | |
1291 XFASTINT (v->contents['%']) = (int) Sword; | |
1292 | |
1293 XFASTINT (v->contents['(']) = (int) Sopen + (')' << 8); | |
1294 XFASTINT (v->contents[')']) = (int) Sclose + ('(' << 8); | |
1295 XFASTINT (v->contents['[']) = (int) Sopen + (']' << 8); | |
1296 XFASTINT (v->contents[']']) = (int) Sclose + ('[' << 8); | |
1297 XFASTINT (v->contents['{']) = (int) Sopen + ('}' << 8); | |
1298 XFASTINT (v->contents['}']) = (int) Sclose + ('{' << 8); | |
1299 XFASTINT (v->contents['"']) = (int) Sstring; | |
1300 XFASTINT (v->contents['\\']) = (int) Sescape; | |
1301 | |
1302 for (i = 0; i < 10; i++) | |
1303 XFASTINT (v->contents["_-+*/&|<>="[i]]) = (int) Ssymbol; | |
1304 | |
1305 for (i = 0; i < 12; i++) | |
1306 XFASTINT (v->contents[".,;:?!#@~^'`"[i]]) = (int) Spunct; | |
1307 } | |
1308 | |
1309 syms_of_syntax () | |
1310 { | |
1311 Qsyntax_table_p = intern ("syntax-table-p"); | |
1312 staticpro (&Qsyntax_table_p); | |
1313 | |
1314 DEFVAR_BOOL ("parse-sexp-ignore-comments", &parse_sexp_ignore_comments, | |
1315 "Non-nil means `forward-sexp', etc., should treat comments as whitespace."); | |
1316 | |
1317 words_include_escapes = 0; | |
1318 DEFVAR_BOOL ("words-include-escapes", &words_include_escapes, | |
1319 "Non-nil means `forward-word', etc., should treat escape chars part of words."); | |
1320 | |
1321 defsubr (&Ssyntax_table_p); | |
1322 defsubr (&Ssyntax_table); | |
1323 defsubr (&Sstandard_syntax_table); | |
1324 defsubr (&Scopy_syntax_table); | |
1325 defsubr (&Sset_syntax_table); | |
1326 defsubr (&Schar_syntax); | |
1327 defsubr (&Smodify_syntax_entry); | |
1328 defsubr (&Sdescribe_syntax); | |
1329 | |
1330 defsubr (&Sforward_word); | |
1331 | |
1332 defsubr (&Sscan_lists); | |
1333 defsubr (&Sscan_sexps); | |
1334 defsubr (&Sbackward_prefix_chars); | |
1335 defsubr (&Sparse_partial_sexp); | |
1336 } |