Fix failure to compile on Windows due to 2012-07-27T06:04:35Z!dmantipov@yandex.ru.
[bpt/emacs.git] / src / syntax.c
1 /* GNU Emacs routines to deal with syntax tables; also word and list parsing.
2 Copyright (C) 1985, 1987, 1993-1995, 1997-1999, 2001-2012
3 Free Software Foundation, Inc.
4
5 This file is part of GNU Emacs.
6
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
11
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
19
20
21 #include <config.h>
22
23 #include <ctype.h>
24 #include <sys/types.h>
25 #include <setjmp.h>
26 #include "lisp.h"
27 #include "commands.h"
28 #include "character.h"
29 #include "buffer.h"
30 #include "keymap.h"
31 #include "regex.h"
32
33 /* Make syntax table lookup grant data in gl_state. */
34 #define SYNTAX_ENTRY_VIA_PROPERTY
35
36 #include "syntax.h"
37 #include "intervals.h"
38 #include "category.h"
39
40 /* Then there are seven single-bit flags that have the following meanings:
41 1. This character is the first of a two-character comment-start sequence.
42 2. This character is the second of a two-character comment-start sequence.
43 3. This character is the first of a two-character comment-end sequence.
44 4. This character is the second of a two-character comment-end sequence.
45 5. This character is a prefix, for backward-prefix-chars.
46 6. The char is part of a delimiter for comments of style "b".
47 7. This character is part of a nestable comment sequence.
48 8. The char is part of a delimiter for comments of style "c".
49 Note that any two-character sequence whose first character has flag 1
50 and whose second character has flag 2 will be interpreted as a comment start.
51
52 bit 6 and 8 are used to discriminate between different comment styles.
53 Languages such as C++ allow two orthogonal syntax start/end pairs
54 and bit 6 is used to determine whether a comment-end or Scommentend
55 ends style a or b. Comment markers can start style a, b, c, or bc.
56 Style a is always the default.
57 For 2-char comment markers, the style b flag is only looked up on the second
58 char of the comment marker and on the first char of the comment ender.
59 For style c (like to for the nested flag), the flag can be placed on any
60 one of the chars.
61 */
62
63 /* These macros extract specific flags from an integer
64 that holds the syntax code and the flags. */
65
66 #define SYNTAX_FLAGS_COMSTART_FIRST(flags) (((flags) >> 16) & 1)
67
68 #define SYNTAX_FLAGS_COMSTART_SECOND(flags) (((flags) >> 17) & 1)
69
70 #define SYNTAX_FLAGS_COMEND_FIRST(flags) (((flags) >> 18) & 1)
71
72 #define SYNTAX_FLAGS_COMEND_SECOND(flags) (((flags) >> 19) & 1)
73
74 #define SYNTAX_FLAGS_PREFIX(flags) (((flags) >> 20) & 1)
75
76 #define SYNTAX_FLAGS_COMMENT_STYLEB(flags) (((flags) >> 21) & 1)
77 #define SYNTAX_FLAGS_COMMENT_STYLEC(flags) (((flags) >> 22) & 2)
78 /* FLAGS should be the flags of the main char of the comment marker, e.g.
79 the second for comstart and the first for comend. */
80 #define SYNTAX_FLAGS_COMMENT_STYLE(flags, other_flags) \
81 (SYNTAX_FLAGS_COMMENT_STYLEB (flags) \
82 | SYNTAX_FLAGS_COMMENT_STYLEC (flags) \
83 | SYNTAX_FLAGS_COMMENT_STYLEC (other_flags))
84
85 #define SYNTAX_FLAGS_COMMENT_NESTED(flags) (((flags) >> 22) & 1)
86
87 /* These macros extract a particular flag for a given character. */
88
89 #define SYNTAX_COMEND_FIRST(c) \
90 (SYNTAX_FLAGS_COMEND_FIRST (SYNTAX_WITH_FLAGS (c)))
91 #define SYNTAX_PREFIX(c) (SYNTAX_FLAGS_PREFIX (SYNTAX_WITH_FLAGS (c)))
92
93 /* We use these constants in place for comment-style and
94 string-ender-char to distinguish comments/strings started by
95 comment_fence and string_fence codes. */
96
97 #define ST_COMMENT_STYLE (256 + 1)
98 #define ST_STRING_STYLE (256 + 2)
99
100 static Lisp_Object Qsyntax_table_p;
101 static Lisp_Object Qsyntax_table, Qscan_error;
102
103 #ifndef __GNUC__
104 /* Used as a temporary in SYNTAX_ENTRY and other macros in syntax.h,
105 if not compiled with GCC. No need to mark it, since it is used
106 only very temporarily. */
107 Lisp_Object syntax_temp;
108 #endif
109
110 /* This is the internal form of the parse state used in parse-partial-sexp. */
111
112 struct lisp_parse_state
113 {
114 EMACS_INT depth; /* Depth at end of parsing. */
115 int instring; /* -1 if not within string, else desired terminator. */
116 EMACS_INT incomment; /* -1 if in unnestable comment else comment nesting */
117 int comstyle; /* comment style a=0, or b=1, or ST_COMMENT_STYLE. */
118 int quoted; /* Nonzero if just after an escape char at end of parsing */
119 EMACS_INT mindepth; /* Minimum depth seen while scanning. */
120 /* Char number of most recent start-of-expression at current level */
121 ptrdiff_t thislevelstart;
122 /* Char number of start of containing expression */
123 ptrdiff_t prevlevelstart;
124 ptrdiff_t location; /* Char number at which parsing stopped. */
125 ptrdiff_t comstr_start; /* Position of last comment/string starter. */
126 Lisp_Object levelstarts; /* Char numbers of starts-of-expression
127 of levels (starting from outermost). */
128 };
129 \f
130 /* These variables are a cache for finding the start of a defun.
131 find_start_pos is the place for which the defun start was found.
132 find_start_value is the defun start position found for it.
133 find_start_value_byte is the corresponding byte position.
134 find_start_buffer is the buffer it was found in.
135 find_start_begv is the BEGV value when it was found.
136 find_start_modiff is the value of MODIFF when it was found. */
137
138 static ptrdiff_t find_start_pos;
139 static ptrdiff_t find_start_value;
140 static ptrdiff_t find_start_value_byte;
141 static struct buffer *find_start_buffer;
142 static ptrdiff_t find_start_begv;
143 static EMACS_INT find_start_modiff;
144
145
146 static Lisp_Object skip_chars (int, Lisp_Object, Lisp_Object, int);
147 static Lisp_Object skip_syntaxes (int, Lisp_Object, Lisp_Object);
148 static Lisp_Object scan_lists (EMACS_INT, EMACS_INT, EMACS_INT, int);
149 static void scan_sexps_forward (struct lisp_parse_state *,
150 ptrdiff_t, ptrdiff_t, ptrdiff_t, EMACS_INT,
151 int, Lisp_Object, int);
152 static int in_classes (int, Lisp_Object);
153 \f
154 /* Whether the syntax of the character C has the prefix flag set. */
155 int syntax_prefix_flag_p (int c)
156 {
157 return SYNTAX_PREFIX (c);
158 }
159
160 struct gl_state_s gl_state; /* Global state of syntax parser. */
161
162 #define INTERVALS_AT_ONCE 10 /* 1 + max-number of intervals
163 to scan to property-change. */
164
165 /* Update gl_state to an appropriate interval which contains CHARPOS. The
166 sign of COUNT give the relative position of CHARPOS wrt the previously
167 valid interval. If INIT, only [be]_property fields of gl_state are
168 valid at start, the rest is filled basing on OBJECT.
169
170 `gl_state.*_i' are the intervals, and CHARPOS is further in the search
171 direction than the intervals - or in an interval. We update the
172 current syntax-table basing on the property of this interval, and
173 update the interval to start further than CHARPOS - or be
174 NULL_INTERVAL. We also update lim_property to be the next value of
175 charpos to call this subroutine again - or be before/after the
176 start/end of OBJECT. */
177
178 void
179 update_syntax_table (ptrdiff_t charpos, EMACS_INT count, int init,
180 Lisp_Object object)
181 {
182 Lisp_Object tmp_table;
183 unsigned cnt = 0;
184 int invalidate = 1;
185 INTERVAL i;
186
187 if (init)
188 {
189 gl_state.old_prop = Qnil;
190 gl_state.start = gl_state.b_property;
191 gl_state.stop = gl_state.e_property;
192 i = interval_of (charpos, object);
193 gl_state.backward_i = gl_state.forward_i = i;
194 invalidate = 0;
195 if (NULL_INTERVAL_P (i))
196 return;
197 /* interval_of updates only ->position of the return value, so
198 update the parents manually to speed up update_interval. */
199 while (!NULL_PARENT (i))
200 {
201 if (AM_RIGHT_CHILD (i))
202 INTERVAL_PARENT (i)->position = i->position
203 - LEFT_TOTAL_LENGTH (i) + TOTAL_LENGTH (i) /* right end */
204 - TOTAL_LENGTH (INTERVAL_PARENT (i))
205 + LEFT_TOTAL_LENGTH (INTERVAL_PARENT (i));
206 else
207 INTERVAL_PARENT (i)->position = i->position - LEFT_TOTAL_LENGTH (i)
208 + TOTAL_LENGTH (i);
209 i = INTERVAL_PARENT (i);
210 }
211 i = gl_state.forward_i;
212 gl_state.b_property = i->position - gl_state.offset;
213 gl_state.e_property = INTERVAL_LAST_POS (i) - gl_state.offset;
214 goto update;
215 }
216 i = count > 0 ? gl_state.forward_i : gl_state.backward_i;
217
218 /* We are guaranteed to be called with CHARPOS either in i,
219 or further off. */
220 if (NULL_INTERVAL_P (i))
221 error ("Error in syntax_table logic for to-the-end intervals");
222 else if (charpos < i->position) /* Move left. */
223 {
224 if (count > 0)
225 error ("Error in syntax_table logic for intervals <-");
226 /* Update the interval. */
227 i = update_interval (i, charpos);
228 if (INTERVAL_LAST_POS (i) != gl_state.b_property)
229 {
230 invalidate = 0;
231 gl_state.forward_i = i;
232 gl_state.e_property = INTERVAL_LAST_POS (i) - gl_state.offset;
233 }
234 }
235 else if (charpos >= INTERVAL_LAST_POS (i)) /* Move right. */
236 {
237 if (count < 0)
238 error ("Error in syntax_table logic for intervals ->");
239 /* Update the interval. */
240 i = update_interval (i, charpos);
241 if (i->position != gl_state.e_property)
242 {
243 invalidate = 0;
244 gl_state.backward_i = i;
245 gl_state.b_property = i->position - gl_state.offset;
246 }
247 }
248
249 update:
250 tmp_table = textget (i->plist, Qsyntax_table);
251
252 if (invalidate)
253 invalidate = !EQ (tmp_table, gl_state.old_prop); /* Need to invalidate? */
254
255 if (invalidate) /* Did not get to adjacent interval. */
256 { /* with the same table => */
257 /* invalidate the old range. */
258 if (count > 0)
259 {
260 gl_state.backward_i = i;
261 gl_state.b_property = i->position - gl_state.offset;
262 }
263 else
264 {
265 gl_state.forward_i = i;
266 gl_state.e_property = INTERVAL_LAST_POS (i) - gl_state.offset;
267 }
268 }
269
270 if (!EQ (tmp_table, gl_state.old_prop))
271 {
272 gl_state.current_syntax_table = tmp_table;
273 gl_state.old_prop = tmp_table;
274 if (EQ (Fsyntax_table_p (tmp_table), Qt))
275 {
276 gl_state.use_global = 0;
277 }
278 else if (CONSP (tmp_table))
279 {
280 gl_state.use_global = 1;
281 gl_state.global_code = tmp_table;
282 }
283 else
284 {
285 gl_state.use_global = 0;
286 gl_state.current_syntax_table = BVAR (current_buffer, syntax_table);
287 }
288 }
289
290 while (!NULL_INTERVAL_P (i))
291 {
292 if (cnt && !EQ (tmp_table, textget (i->plist, Qsyntax_table)))
293 {
294 if (count > 0)
295 {
296 gl_state.e_property = i->position - gl_state.offset;
297 gl_state.forward_i = i;
298 }
299 else
300 {
301 gl_state.b_property
302 = i->position + LENGTH (i) - gl_state.offset;
303 gl_state.backward_i = i;
304 }
305 return;
306 }
307 else if (cnt == INTERVALS_AT_ONCE)
308 {
309 if (count > 0)
310 {
311 gl_state.e_property
312 = i->position + LENGTH (i) - gl_state.offset
313 /* e_property at EOB is not set to ZV but to ZV+1, so that
314 we can do INC(from);UPDATE_SYNTAX_TABLE_FORWARD without
315 having to check eob between the two. */
316 + (NULL_INTERVAL_P (next_interval (i)) ? 1 : 0);
317 gl_state.forward_i = i;
318 }
319 else
320 {
321 gl_state.b_property = i->position - gl_state.offset;
322 gl_state.backward_i = i;
323 }
324 return;
325 }
326 cnt++;
327 i = count > 0 ? next_interval (i) : previous_interval (i);
328 }
329 eassert (NULL_INTERVAL_P (i)); /* This property goes to the end. */
330 if (count > 0)
331 gl_state.e_property = gl_state.stop;
332 else
333 gl_state.b_property = gl_state.start;
334 }
335 \f
336 /* Returns TRUE if char at CHARPOS is quoted.
337 Global syntax-table data should be set up already to be good at CHARPOS
338 or after. On return global syntax data is good for lookup at CHARPOS. */
339
340 static int
341 char_quoted (ptrdiff_t charpos, ptrdiff_t bytepos)
342 {
343 register enum syntaxcode code;
344 register ptrdiff_t beg = BEGV;
345 register int quoted = 0;
346 ptrdiff_t orig = charpos;
347
348 while (charpos > beg)
349 {
350 int c;
351 DEC_BOTH (charpos, bytepos);
352
353 UPDATE_SYNTAX_TABLE_BACKWARD (charpos);
354 c = FETCH_CHAR_AS_MULTIBYTE (bytepos);
355 code = SYNTAX (c);
356 if (! (code == Scharquote || code == Sescape))
357 break;
358
359 quoted = !quoted;
360 }
361
362 UPDATE_SYNTAX_TABLE (orig);
363 return quoted;
364 }
365
366 /* Return the bytepos one character before BYTEPOS.
367 We assume that BYTEPOS is not at the start of the buffer. */
368
369 static inline ptrdiff_t
370 dec_bytepos (ptrdiff_t bytepos)
371 {
372 if (NILP (BVAR (current_buffer, enable_multibyte_characters)))
373 return bytepos - 1;
374
375 DEC_POS (bytepos);
376 return bytepos;
377 }
378 \f
379 /* Return a defun-start position before POS and not too far before.
380 It should be the last one before POS, or nearly the last.
381
382 When open_paren_in_column_0_is_defun_start is nonzero,
383 only the beginning of the buffer is treated as a defun-start.
384
385 We record the information about where the scan started
386 and what its result was, so that another call in the same area
387 can return the same value very quickly.
388
389 There is no promise at which position the global syntax data is
390 valid on return from the subroutine, so the caller should explicitly
391 update the global data. */
392
393 static ptrdiff_t
394 find_defun_start (ptrdiff_t pos, ptrdiff_t pos_byte)
395 {
396 ptrdiff_t opoint = PT, opoint_byte = PT_BYTE;
397
398 if (!open_paren_in_column_0_is_defun_start)
399 {
400 find_start_value = BEGV;
401 find_start_value_byte = BEGV_BYTE;
402 find_start_buffer = current_buffer;
403 find_start_modiff = MODIFF;
404 find_start_begv = BEGV;
405 find_start_pos = pos;
406 return BEGV;
407 }
408
409 /* Use previous finding, if it's valid and applies to this inquiry. */
410 if (current_buffer == find_start_buffer
411 /* Reuse the defun-start even if POS is a little farther on.
412 POS might be in the next defun, but that's ok.
413 Our value may not be the best possible, but will still be usable. */
414 && pos <= find_start_pos + 1000
415 && pos >= find_start_value
416 && BEGV == find_start_begv
417 && MODIFF == find_start_modiff)
418 return find_start_value;
419
420 /* Back up to start of line. */
421 scan_newline (pos, pos_byte, BEGV, BEGV_BYTE, -1, 1);
422
423 /* We optimize syntax-table lookup for rare updates. Thus we accept
424 only those `^\s(' which are good in global _and_ text-property
425 syntax-tables. */
426 SETUP_BUFFER_SYNTAX_TABLE ();
427 while (PT > BEGV)
428 {
429 int c;
430
431 /* Open-paren at start of line means we may have found our
432 defun-start. */
433 c = FETCH_CHAR_AS_MULTIBYTE (PT_BYTE);
434 if (SYNTAX (c) == Sopen)
435 {
436 SETUP_SYNTAX_TABLE (PT + 1, -1); /* Try again... */
437 c = FETCH_CHAR_AS_MULTIBYTE (PT_BYTE);
438 if (SYNTAX (c) == Sopen)
439 break;
440 /* Now fallback to the default value. */
441 SETUP_BUFFER_SYNTAX_TABLE ();
442 }
443 /* Move to beg of previous line. */
444 scan_newline (PT, PT_BYTE, BEGV, BEGV_BYTE, -2, 1);
445 }
446
447 /* Record what we found, for the next try. */
448 find_start_value = PT;
449 find_start_value_byte = PT_BYTE;
450 find_start_buffer = current_buffer;
451 find_start_modiff = MODIFF;
452 find_start_begv = BEGV;
453 find_start_pos = pos;
454
455 TEMP_SET_PT_BOTH (opoint, opoint_byte);
456
457 return find_start_value;
458 }
459 \f
460 /* Return the SYNTAX_COMEND_FIRST of the character before POS, POS_BYTE. */
461
462 static int
463 prev_char_comend_first (ptrdiff_t pos, ptrdiff_t pos_byte)
464 {
465 int c, val;
466
467 DEC_BOTH (pos, pos_byte);
468 UPDATE_SYNTAX_TABLE_BACKWARD (pos);
469 c = FETCH_CHAR (pos_byte);
470 val = SYNTAX_COMEND_FIRST (c);
471 UPDATE_SYNTAX_TABLE_FORWARD (pos + 1);
472 return val;
473 }
474
475 /* Return the SYNTAX_COMSTART_FIRST of the character before POS, POS_BYTE. */
476
477 /* static int
478 * prev_char_comstart_first (pos, pos_byte)
479 * int pos, pos_byte;
480 * {
481 * int c, val;
482 *
483 * DEC_BOTH (pos, pos_byte);
484 * UPDATE_SYNTAX_TABLE_BACKWARD (pos);
485 * c = FETCH_CHAR (pos_byte);
486 * val = SYNTAX_COMSTART_FIRST (c);
487 * UPDATE_SYNTAX_TABLE_FORWARD (pos + 1);
488 * return val;
489 * } */
490
491 /* Checks whether charpos FROM is at the end of a comment.
492 FROM_BYTE is the bytepos corresponding to FROM.
493 Do not move back before STOP.
494
495 Return a positive value if we find a comment ending at FROM/FROM_BYTE;
496 return -1 otherwise.
497
498 If successful, store the charpos of the comment's beginning
499 into *CHARPOS_PTR, and the bytepos into *BYTEPOS_PTR.
500
501 Global syntax data remains valid for backward search starting at
502 the returned value (or at FROM, if the search was not successful). */
503
504 static int
505 back_comment (ptrdiff_t from, ptrdiff_t from_byte, ptrdiff_t stop, int comnested, int comstyle, ptrdiff_t *charpos_ptr, ptrdiff_t *bytepos_ptr)
506 {
507 /* Look back, counting the parity of string-quotes,
508 and recording the comment-starters seen.
509 When we reach a safe place, assume that's not in a string;
510 then step the main scan to the earliest comment-starter seen
511 an even number of string quotes away from the safe place.
512
513 OFROM[I] is position of the earliest comment-starter seen
514 which is I+2X quotes from the comment-end.
515 PARITY is current parity of quotes from the comment end. */
516 int string_style = -1; /* Presumed outside of any string. */
517 int string_lossage = 0;
518 /* Not a real lossage: indicates that we have passed a matching comment
519 starter plus a non-matching comment-ender, meaning that any matching
520 comment-starter we might see later could be a false positive (hidden
521 inside another comment).
522 Test case: { a (* b } c (* d *) */
523 int comment_lossage = 0;
524 ptrdiff_t comment_end = from;
525 ptrdiff_t comment_end_byte = from_byte;
526 ptrdiff_t comstart_pos = 0;
527 ptrdiff_t comstart_byte IF_LINT (= 0);
528 /* Place where the containing defun starts,
529 or 0 if we didn't come across it yet. */
530 ptrdiff_t defun_start = 0;
531 ptrdiff_t defun_start_byte = 0;
532 register enum syntaxcode code;
533 int nesting = 1; /* current comment nesting */
534 int c;
535 int syntax = 0;
536
537 /* FIXME: A }} comment-ender style leads to incorrect behavior
538 in the case of {{ c }}} because we ignore the last two chars which are
539 assumed to be comment-enders although they aren't. */
540
541 /* At beginning of range to scan, we're outside of strings;
542 that determines quote parity to the comment-end. */
543 while (from != stop)
544 {
545 ptrdiff_t temp_byte;
546 int prev_syntax, com2start, com2end;
547 int comstart;
548
549 /* Move back and examine a character. */
550 DEC_BOTH (from, from_byte);
551 UPDATE_SYNTAX_TABLE_BACKWARD (from);
552
553 prev_syntax = syntax;
554 c = FETCH_CHAR_AS_MULTIBYTE (from_byte);
555 syntax = SYNTAX_WITH_FLAGS (c);
556 code = SYNTAX (c);
557
558 /* Check for 2-char comment markers. */
559 com2start = (SYNTAX_FLAGS_COMSTART_FIRST (syntax)
560 && SYNTAX_FLAGS_COMSTART_SECOND (prev_syntax)
561 && (comstyle
562 == SYNTAX_FLAGS_COMMENT_STYLE (prev_syntax, syntax))
563 && (SYNTAX_FLAGS_COMMENT_NESTED (prev_syntax)
564 || SYNTAX_FLAGS_COMMENT_NESTED (syntax)) == comnested);
565 com2end = (SYNTAX_FLAGS_COMEND_FIRST (syntax)
566 && SYNTAX_FLAGS_COMEND_SECOND (prev_syntax));
567 comstart = (com2start || code == Scomment);
568
569 /* Nasty cases with overlapping 2-char comment markers:
570 - snmp-mode: -- c -- foo -- c --
571 --- c --
572 ------ c --
573 - c-mode: *||*
574 |* *|* *|
575 |*| |* |*|
576 /// */
577
578 /* If a 2-char comment sequence partly overlaps with another,
579 we don't try to be clever. E.g. |*| in C, or }% in modes that
580 have %..\n and %{..}%. */
581 if (from > stop && (com2end || comstart))
582 {
583 ptrdiff_t next = from, next_byte = from_byte;
584 int next_c, next_syntax;
585 DEC_BOTH (next, next_byte);
586 UPDATE_SYNTAX_TABLE_BACKWARD (next);
587 next_c = FETCH_CHAR_AS_MULTIBYTE (next_byte);
588 next_syntax = SYNTAX_WITH_FLAGS (next_c);
589 if (((comstart || comnested)
590 && SYNTAX_FLAGS_COMEND_SECOND (syntax)
591 && SYNTAX_FLAGS_COMEND_FIRST (next_syntax))
592 || ((com2end || comnested)
593 && SYNTAX_FLAGS_COMSTART_SECOND (syntax)
594 && (comstyle
595 == SYNTAX_FLAGS_COMMENT_STYLE (syntax, prev_syntax))
596 && SYNTAX_FLAGS_COMSTART_FIRST (next_syntax)))
597 goto lossage;
598 /* UPDATE_SYNTAX_TABLE_FORWARD (next + 1); */
599 }
600
601 if (com2start && comstart_pos == 0)
602 /* We're looking at a comment starter. But it might be a comment
603 ender as well (see snmp-mode). The first time we see one, we
604 need to consider it as a comment starter,
605 and the subsequent times as a comment ender. */
606 com2end = 0;
607
608 /* Turn a 2-char comment sequences into the appropriate syntax. */
609 if (com2end)
610 code = Sendcomment;
611 else if (com2start)
612 code = Scomment;
613 /* Ignore comment starters of a different style. */
614 else if (code == Scomment
615 && (comstyle != SYNTAX_FLAGS_COMMENT_STYLE (syntax, 0)
616 || SYNTAX_FLAGS_COMMENT_NESTED (syntax) != comnested))
617 continue;
618
619 /* Ignore escaped characters, except comment-enders. */
620 if (code != Sendcomment && char_quoted (from, from_byte))
621 continue;
622
623 switch (code)
624 {
625 case Sstring_fence:
626 case Scomment_fence:
627 c = (code == Sstring_fence ? ST_STRING_STYLE : ST_COMMENT_STYLE);
628 case Sstring:
629 /* Track parity of quotes. */
630 if (string_style == -1)
631 /* Entering a string. */
632 string_style = c;
633 else if (string_style == c)
634 /* Leaving the string. */
635 string_style = -1;
636 else
637 /* If we have two kinds of string delimiters.
638 There's no way to grok this scanning backwards. */
639 string_lossage = 1;
640 break;
641
642 case Scomment:
643 /* We've already checked that it is the relevant comstyle. */
644 if (string_style != -1 || comment_lossage || string_lossage)
645 /* There are odd string quotes involved, so let's be careful.
646 Test case in Pascal: " { " a { " } */
647 goto lossage;
648
649 if (!comnested)
650 {
651 /* Record best comment-starter so far. */
652 comstart_pos = from;
653 comstart_byte = from_byte;
654 }
655 else if (--nesting <= 0)
656 /* nested comments have to be balanced, so we don't need to
657 keep looking for earlier ones. We use here the same (slightly
658 incorrect) reasoning as below: since it is followed by uniform
659 paired string quotes, this comment-start has to be outside of
660 strings, else the comment-end itself would be inside a string. */
661 goto done;
662 break;
663
664 case Sendcomment:
665 if (SYNTAX_FLAGS_COMMENT_STYLE (syntax, 0) == comstyle
666 && ((com2end && SYNTAX_FLAGS_COMMENT_NESTED (prev_syntax))
667 || SYNTAX_FLAGS_COMMENT_NESTED (syntax)) == comnested)
668 /* This is the same style of comment ender as ours. */
669 {
670 if (comnested)
671 nesting++;
672 else
673 /* Anything before that can't count because it would match
674 this comment-ender rather than ours. */
675 from = stop; /* Break out of the loop. */
676 }
677 else if (comstart_pos != 0 || c != '\n')
678 /* We're mixing comment styles here, so we'd better be careful.
679 The (comstart_pos != 0 || c != '\n') check is not quite correct
680 (we should just always set comment_lossage), but removing it
681 would imply that any multiline comment in C would go through
682 lossage, which seems overkill.
683 The failure should only happen in the rare cases such as
684 { (* } *) */
685 comment_lossage = 1;
686 break;
687
688 case Sopen:
689 /* Assume a defun-start point is outside of strings. */
690 if (open_paren_in_column_0_is_defun_start
691 && (from == stop
692 || (temp_byte = dec_bytepos (from_byte),
693 FETCH_CHAR (temp_byte) == '\n')))
694 {
695 defun_start = from;
696 defun_start_byte = from_byte;
697 from = stop; /* Break out of the loop. */
698 }
699 break;
700
701 default:
702 break;
703 }
704 }
705
706 if (comstart_pos == 0)
707 {
708 from = comment_end;
709 from_byte = comment_end_byte;
710 UPDATE_SYNTAX_TABLE_FORWARD (comment_end - 1);
711 }
712 /* If comstart_pos is set and we get here (ie. didn't jump to `lossage'
713 or `done'), then we've found the beginning of the non-nested comment. */
714 else if (1) /* !comnested */
715 {
716 from = comstart_pos;
717 from_byte = comstart_byte;
718 UPDATE_SYNTAX_TABLE_FORWARD (from - 1);
719 }
720 else
721 {
722 struct lisp_parse_state state;
723 lossage:
724 /* We had two kinds of string delimiters mixed up
725 together. Decode this going forwards.
726 Scan fwd from a known safe place (beginning-of-defun)
727 to the one in question; this records where we
728 last passed a comment starter. */
729 /* If we did not already find the defun start, find it now. */
730 if (defun_start == 0)
731 {
732 defun_start = find_defun_start (comment_end, comment_end_byte);
733 defun_start_byte = find_start_value_byte;
734 }
735 do
736 {
737 scan_sexps_forward (&state,
738 defun_start, defun_start_byte,
739 comment_end, TYPE_MINIMUM (EMACS_INT),
740 0, Qnil, 0);
741 defun_start = comment_end;
742 if (state.incomment == (comnested ? 1 : -1)
743 && state.comstyle == comstyle)
744 from = state.comstr_start;
745 else
746 {
747 from = comment_end;
748 if (state.incomment)
749 /* If comment_end is inside some other comment, maybe ours
750 is nested, so we need to try again from within the
751 surrounding comment. Example: { a (* " *) */
752 {
753 /* FIXME: We should advance by one or two chars. */
754 defun_start = state.comstr_start + 2;
755 defun_start_byte = CHAR_TO_BYTE (defun_start);
756 }
757 }
758 } while (defun_start < comment_end);
759
760 from_byte = CHAR_TO_BYTE (from);
761 UPDATE_SYNTAX_TABLE_FORWARD (from - 1);
762 }
763
764 done:
765 *charpos_ptr = from;
766 *bytepos_ptr = from_byte;
767
768 return (from == comment_end) ? -1 : from;
769 }
770 \f
771 DEFUN ("syntax-table-p", Fsyntax_table_p, Ssyntax_table_p, 1, 1, 0,
772 doc: /* Return t if OBJECT is a syntax table.
773 Currently, any char-table counts as a syntax table. */)
774 (Lisp_Object object)
775 {
776 if (CHAR_TABLE_P (object)
777 && EQ (XCHAR_TABLE (object)->purpose, Qsyntax_table))
778 return Qt;
779 return Qnil;
780 }
781
782 static void
783 check_syntax_table (Lisp_Object obj)
784 {
785 CHECK_TYPE (CHAR_TABLE_P (obj) && EQ (XCHAR_TABLE (obj)->purpose, Qsyntax_table),
786 Qsyntax_table_p, obj);
787 }
788
789 DEFUN ("syntax-table", Fsyntax_table, Ssyntax_table, 0, 0, 0,
790 doc: /* Return the current syntax table.
791 This is the one specified by the current buffer. */)
792 (void)
793 {
794 return BVAR (current_buffer, syntax_table);
795 }
796
797 DEFUN ("standard-syntax-table", Fstandard_syntax_table,
798 Sstandard_syntax_table, 0, 0, 0,
799 doc: /* Return the standard syntax table.
800 This is the one used for new buffers. */)
801 (void)
802 {
803 return Vstandard_syntax_table;
804 }
805
806 DEFUN ("copy-syntax-table", Fcopy_syntax_table, Scopy_syntax_table, 0, 1, 0,
807 doc: /* Construct a new syntax table and return it.
808 It is a copy of the TABLE, which defaults to the standard syntax table. */)
809 (Lisp_Object table)
810 {
811 Lisp_Object copy;
812
813 if (!NILP (table))
814 check_syntax_table (table);
815 else
816 table = Vstandard_syntax_table;
817
818 copy = Fcopy_sequence (table);
819
820 /* Only the standard syntax table should have a default element.
821 Other syntax tables should inherit from parents instead. */
822 XCHAR_TABLE (copy)->defalt = Qnil;
823
824 /* Copied syntax tables should all have parents.
825 If we copied one with no parent, such as the standard syntax table,
826 use the standard syntax table as the copy's parent. */
827 if (NILP (XCHAR_TABLE (copy)->parent))
828 Fset_char_table_parent (copy, Vstandard_syntax_table);
829 return copy;
830 }
831
832 DEFUN ("set-syntax-table", Fset_syntax_table, Sset_syntax_table, 1, 1, 0,
833 doc: /* Select a new syntax table for the current buffer.
834 One argument, a syntax table. */)
835 (Lisp_Object table)
836 {
837 int idx;
838 check_syntax_table (table);
839 BVAR (current_buffer, syntax_table) = table;
840 /* Indicate that this buffer now has a specified syntax table. */
841 idx = PER_BUFFER_VAR_IDX (syntax_table);
842 SET_PER_BUFFER_VALUE_P (current_buffer, idx, 1);
843 return table;
844 }
845 \f
846 /* Convert a letter which signifies a syntax code
847 into the code it signifies.
848 This is used by modify-syntax-entry, and other things. */
849
850 unsigned char syntax_spec_code[0400] =
851 { 0377, 0377, 0377, 0377, 0377, 0377, 0377, 0377,
852 0377, 0377, 0377, 0377, 0377, 0377, 0377, 0377,
853 0377, 0377, 0377, 0377, 0377, 0377, 0377, 0377,
854 0377, 0377, 0377, 0377, 0377, 0377, 0377, 0377,
855 (char) Swhitespace, (char) Scomment_fence, (char) Sstring, 0377,
856 (char) Smath, 0377, 0377, (char) Squote,
857 (char) Sopen, (char) Sclose, 0377, 0377,
858 0377, (char) Swhitespace, (char) Spunct, (char) Scharquote,
859 0377, 0377, 0377, 0377, 0377, 0377, 0377, 0377,
860 0377, 0377, 0377, 0377,
861 (char) Scomment, 0377, (char) Sendcomment, 0377,
862 (char) Sinherit, 0377, 0377, 0377, 0377, 0377, 0377, 0377, /* @, A ... */
863 0377, 0377, 0377, 0377, 0377, 0377, 0377, 0377,
864 0377, 0377, 0377, 0377, 0377, 0377, 0377, (char) Sword,
865 0377, 0377, 0377, 0377, (char) Sescape, 0377, 0377, (char) Ssymbol,
866 0377, 0377, 0377, 0377, 0377, 0377, 0377, 0377, /* `, a, ... */
867 0377, 0377, 0377, 0377, 0377, 0377, 0377, 0377,
868 0377, 0377, 0377, 0377, 0377, 0377, 0377, (char) Sword,
869 0377, 0377, 0377, 0377, (char) Sstring_fence, 0377, 0377, 0377
870 };
871
872 /* Indexed by syntax code, give the letter that describes it. */
873
874 char syntax_code_spec[16] =
875 {
876 ' ', '.', 'w', '_', '(', ')', '\'', '\"', '$', '\\', '/', '<', '>', '@',
877 '!', '|'
878 };
879
880 /* Indexed by syntax code, give the object (cons of syntax code and
881 nil) to be stored in syntax table. Since these objects can be
882 shared among syntax tables, we generate them in advance. By
883 sharing objects, the function `describe-syntax' can give a more
884 compact listing. */
885 static Lisp_Object Vsyntax_code_object;
886
887 \f
888 DEFUN ("char-syntax", Fchar_syntax, Schar_syntax, 1, 1, 0,
889 doc: /* Return the syntax code of CHARACTER, described by a character.
890 For example, if CHARACTER is a word constituent, the
891 character `w' (119) is returned.
892 The characters that correspond to various syntax codes
893 are listed in the documentation of `modify-syntax-entry'. */)
894 (Lisp_Object character)
895 {
896 int char_int;
897 CHECK_CHARACTER (character);
898 char_int = XINT (character);
899 SETUP_BUFFER_SYNTAX_TABLE ();
900 return make_number (syntax_code_spec[(int) SYNTAX (char_int)]);
901 }
902
903 DEFUN ("matching-paren", Fmatching_paren, Smatching_paren, 1, 1, 0,
904 doc: /* Return the matching parenthesis of CHARACTER, or nil if none. */)
905 (Lisp_Object character)
906 {
907 int char_int, code;
908 CHECK_NUMBER (character);
909 char_int = XINT (character);
910 SETUP_BUFFER_SYNTAX_TABLE ();
911 code = SYNTAX (char_int);
912 if (code == Sopen || code == Sclose)
913 return SYNTAX_MATCH (char_int);
914 return Qnil;
915 }
916
917 DEFUN ("string-to-syntax", Fstring_to_syntax, Sstring_to_syntax, 1, 1, 0,
918 doc: /* Convert a syntax specification STRING into syntax cell form.
919 STRING should be a string as it is allowed as argument of
920 `modify-syntax-entry'. Value is the equivalent cons cell
921 \(CODE . MATCHING-CHAR) that can be used as value of a `syntax-table'
922 text property. */)
923 (Lisp_Object string)
924 {
925 register const unsigned char *p;
926 register enum syntaxcode code;
927 int val;
928 Lisp_Object match;
929
930 CHECK_STRING (string);
931
932 p = SDATA (string);
933 code = (enum syntaxcode) syntax_spec_code[*p++];
934 if (((int) code & 0377) == 0377)
935 error ("Invalid syntax description letter: %c", p[-1]);
936
937 if (code == Sinherit)
938 return Qnil;
939
940 if (*p)
941 {
942 int len;
943 int character = STRING_CHAR_AND_LENGTH (p, len);
944 XSETINT (match, character);
945 if (XFASTINT (match) == ' ')
946 match = Qnil;
947 p += len;
948 }
949 else
950 match = Qnil;
951
952 val = (int) code;
953 while (*p)
954 switch (*p++)
955 {
956 case '1':
957 val |= 1 << 16;
958 break;
959
960 case '2':
961 val |= 1 << 17;
962 break;
963
964 case '3':
965 val |= 1 << 18;
966 break;
967
968 case '4':
969 val |= 1 << 19;
970 break;
971
972 case 'p':
973 val |= 1 << 20;
974 break;
975
976 case 'b':
977 val |= 1 << 21;
978 break;
979
980 case 'n':
981 val |= 1 << 22;
982 break;
983
984 case 'c':
985 val |= 1 << 23;
986 break;
987 }
988
989 if (val < ASIZE (Vsyntax_code_object) && NILP (match))
990 return AREF (Vsyntax_code_object, val);
991 else
992 /* Since we can't use a shared object, let's make a new one. */
993 return Fcons (make_number (val), match);
994 }
995
996 /* I really don't know why this is interactive
997 help-form should at least be made useful whilst reading the second arg. */
998 DEFUN ("modify-syntax-entry", Fmodify_syntax_entry, Smodify_syntax_entry, 2, 3,
999 "cSet syntax for character: \nsSet syntax for %s to: ",
1000 doc: /* Set syntax for character CHAR according to string NEWENTRY.
1001 The syntax is changed only for table SYNTAX-TABLE, which defaults to
1002 the current buffer's syntax table.
1003 CHAR may be a cons (MIN . MAX), in which case, syntaxes of all characters
1004 in the range MIN to MAX are changed.
1005 The first character of NEWENTRY should be one of the following:
1006 Space or - whitespace syntax. w word constituent.
1007 _ symbol constituent. . punctuation.
1008 ( open-parenthesis. ) close-parenthesis.
1009 " string quote. \\ escape.
1010 $ paired delimiter. ' expression quote or prefix operator.
1011 < comment starter. > comment ender.
1012 / character-quote. @ inherit from `standard-syntax-table'.
1013 | generic string fence. ! generic comment fence.
1014
1015 Only single-character comment start and end sequences are represented thus.
1016 Two-character sequences are represented as described below.
1017 The second character of NEWENTRY is the matching parenthesis,
1018 used only if the first character is `(' or `)'.
1019 Any additional characters are flags.
1020 Defined flags are the characters 1, 2, 3, 4, b, p, and n.
1021 1 means CHAR is the start of a two-char comment start sequence.
1022 2 means CHAR is the second character of such a sequence.
1023 3 means CHAR is the start of a two-char comment end sequence.
1024 4 means CHAR is the second character of such a sequence.
1025
1026 There can be several orthogonal comment sequences. This is to support
1027 language modes such as C++. By default, all comment sequences are of style
1028 a, but you can set the comment sequence style to b (on the second character
1029 of a comment-start, and the first character of a comment-end sequence) and/or
1030 c (on any of its chars) using this flag:
1031 b means CHAR is part of comment sequence b.
1032 c means CHAR is part of comment sequence c.
1033 n means CHAR is part of a nestable comment sequence.
1034
1035 p means CHAR is a prefix character for `backward-prefix-chars';
1036 such characters are treated as whitespace when they occur
1037 between expressions.
1038 usage: (modify-syntax-entry CHAR NEWENTRY &optional SYNTAX-TABLE) */)
1039 (Lisp_Object c, Lisp_Object newentry, Lisp_Object syntax_table)
1040 {
1041 if (CONSP (c))
1042 {
1043 CHECK_CHARACTER_CAR (c);
1044 CHECK_CHARACTER_CDR (c);
1045 }
1046 else
1047 CHECK_CHARACTER (c);
1048
1049 if (NILP (syntax_table))
1050 syntax_table = BVAR (current_buffer, syntax_table);
1051 else
1052 check_syntax_table (syntax_table);
1053
1054 newentry = Fstring_to_syntax (newentry);
1055 if (CONSP (c))
1056 SET_RAW_SYNTAX_ENTRY_RANGE (syntax_table, c, newentry);
1057 else
1058 SET_RAW_SYNTAX_ENTRY (syntax_table, XINT (c), newentry);
1059
1060 /* We clear the regexp cache, since character classes can now have
1061 different values from those in the compiled regexps.*/
1062 clear_regexp_cache ();
1063
1064 return Qnil;
1065 }
1066 \f
1067 /* Dump syntax table to buffer in human-readable format */
1068
1069 DEFUN ("internal-describe-syntax-value", Finternal_describe_syntax_value,
1070 Sinternal_describe_syntax_value, 1, 1, 0,
1071 doc: /* Insert a description of the internal syntax description SYNTAX at point. */)
1072 (Lisp_Object syntax)
1073 {
1074 register enum syntaxcode code;
1075 int syntax_code;
1076 char desc, start1, start2, end1, end2, prefix,
1077 comstyleb, comstylec, comnested;
1078 char str[2];
1079 Lisp_Object first, match_lisp, value = syntax;
1080
1081 if (NILP (value))
1082 {
1083 insert_string ("default");
1084 return syntax;
1085 }
1086
1087 if (CHAR_TABLE_P (value))
1088 {
1089 insert_string ("deeper char-table ...");
1090 return syntax;
1091 }
1092
1093 if (!CONSP (value))
1094 {
1095 insert_string ("invalid");
1096 return syntax;
1097 }
1098
1099 first = XCAR (value);
1100 match_lisp = XCDR (value);
1101
1102 if (!INTEGERP (first) || !(NILP (match_lisp) || CHARACTERP (match_lisp)))
1103 {
1104 insert_string ("invalid");
1105 return syntax;
1106 }
1107
1108 syntax_code = XINT (first) & INT_MAX;
1109 code = (enum syntaxcode) (syntax_code & 0377);
1110 start1 = SYNTAX_FLAGS_COMSTART_FIRST (syntax_code);
1111 start2 = SYNTAX_FLAGS_COMSTART_SECOND (syntax_code);;
1112 end1 = SYNTAX_FLAGS_COMEND_FIRST (syntax_code);
1113 end2 = SYNTAX_FLAGS_COMEND_SECOND (syntax_code);
1114 prefix = SYNTAX_FLAGS_PREFIX (syntax_code);
1115 comstyleb = SYNTAX_FLAGS_COMMENT_STYLEB (syntax_code);
1116 comstylec = SYNTAX_FLAGS_COMMENT_STYLEC (syntax_code);
1117 comnested = SYNTAX_FLAGS_COMMENT_NESTED (syntax_code);
1118
1119 if ((int) code < 0 || (int) code >= (int) Smax)
1120 {
1121 insert_string ("invalid");
1122 return syntax;
1123 }
1124 desc = syntax_code_spec[(int) code];
1125
1126 str[0] = desc, str[1] = 0;
1127 insert (str, 1);
1128
1129 if (NILP (match_lisp))
1130 insert (" ", 1);
1131 else
1132 insert_char (XINT (match_lisp));
1133
1134 if (start1)
1135 insert ("1", 1);
1136 if (start2)
1137 insert ("2", 1);
1138
1139 if (end1)
1140 insert ("3", 1);
1141 if (end2)
1142 insert ("4", 1);
1143
1144 if (prefix)
1145 insert ("p", 1);
1146 if (comstyleb)
1147 insert ("b", 1);
1148 if (comstylec)
1149 insert ("c", 1);
1150 if (comnested)
1151 insert ("n", 1);
1152
1153 insert_string ("\twhich means: ");
1154
1155 switch (SWITCH_ENUM_CAST (code))
1156 {
1157 case Swhitespace:
1158 insert_string ("whitespace"); break;
1159 case Spunct:
1160 insert_string ("punctuation"); break;
1161 case Sword:
1162 insert_string ("word"); break;
1163 case Ssymbol:
1164 insert_string ("symbol"); break;
1165 case Sopen:
1166 insert_string ("open"); break;
1167 case Sclose:
1168 insert_string ("close"); break;
1169 case Squote:
1170 insert_string ("prefix"); break;
1171 case Sstring:
1172 insert_string ("string"); break;
1173 case Smath:
1174 insert_string ("math"); break;
1175 case Sescape:
1176 insert_string ("escape"); break;
1177 case Scharquote:
1178 insert_string ("charquote"); break;
1179 case Scomment:
1180 insert_string ("comment"); break;
1181 case Sendcomment:
1182 insert_string ("endcomment"); break;
1183 case Sinherit:
1184 insert_string ("inherit"); break;
1185 case Scomment_fence:
1186 insert_string ("comment fence"); break;
1187 case Sstring_fence:
1188 insert_string ("string fence"); break;
1189 default:
1190 insert_string ("invalid");
1191 return syntax;
1192 }
1193
1194 if (!NILP (match_lisp))
1195 {
1196 insert_string (", matches ");
1197 insert_char (XINT (match_lisp));
1198 }
1199
1200 if (start1)
1201 insert_string (",\n\t is the first character of a comment-start sequence");
1202 if (start2)
1203 insert_string (",\n\t is the second character of a comment-start sequence");
1204
1205 if (end1)
1206 insert_string (",\n\t is the first character of a comment-end sequence");
1207 if (end2)
1208 insert_string (",\n\t is the second character of a comment-end sequence");
1209 if (comstyleb)
1210 insert_string (" (comment style b)");
1211 if (comstylec)
1212 insert_string (" (comment style c)");
1213 if (comnested)
1214 insert_string (" (nestable)");
1215
1216 if (prefix)
1217 insert_string (",\n\t is a prefix character for `backward-prefix-chars'");
1218
1219 return syntax;
1220 }
1221 \f
1222 /* Return the position across COUNT words from FROM.
1223 If that many words cannot be found before the end of the buffer, return 0.
1224 COUNT negative means scan backward and stop at word beginning. */
1225
1226 ptrdiff_t
1227 scan_words (register ptrdiff_t from, register EMACS_INT count)
1228 {
1229 register ptrdiff_t beg = BEGV;
1230 register ptrdiff_t end = ZV;
1231 register ptrdiff_t from_byte = CHAR_TO_BYTE (from);
1232 register enum syntaxcode code;
1233 int ch0, ch1;
1234 Lisp_Object func, pos;
1235
1236 immediate_quit = 1;
1237 QUIT;
1238
1239 SETUP_SYNTAX_TABLE (from, count);
1240
1241 while (count > 0)
1242 {
1243 while (1)
1244 {
1245 if (from == end)
1246 {
1247 immediate_quit = 0;
1248 return 0;
1249 }
1250 UPDATE_SYNTAX_TABLE_FORWARD (from);
1251 ch0 = FETCH_CHAR_AS_MULTIBYTE (from_byte);
1252 code = SYNTAX (ch0);
1253 INC_BOTH (from, from_byte);
1254 if (words_include_escapes
1255 && (code == Sescape || code == Scharquote))
1256 break;
1257 if (code == Sword)
1258 break;
1259 }
1260 /* Now CH0 is a character which begins a word and FROM is the
1261 position of the next character. */
1262 func = CHAR_TABLE_REF (Vfind_word_boundary_function_table, ch0);
1263 if (! NILP (Ffboundp (func)))
1264 {
1265 pos = call2 (func, make_number (from - 1), make_number (end));
1266 if (INTEGERP (pos) && from < XINT (pos) && XINT (pos) <= ZV)
1267 {
1268 from = XINT (pos);
1269 from_byte = CHAR_TO_BYTE (from);
1270 }
1271 }
1272 else
1273 {
1274 while (1)
1275 {
1276 if (from == end) break;
1277 UPDATE_SYNTAX_TABLE_FORWARD (from);
1278 ch1 = FETCH_CHAR_AS_MULTIBYTE (from_byte);
1279 code = SYNTAX (ch1);
1280 if ((code != Sword
1281 && (! words_include_escapes
1282 || (code != Sescape && code != Scharquote)))
1283 || word_boundary_p (ch0, ch1))
1284 break;
1285 INC_BOTH (from, from_byte);
1286 ch0 = ch1;
1287 }
1288 }
1289 count--;
1290 }
1291 while (count < 0)
1292 {
1293 while (1)
1294 {
1295 if (from == beg)
1296 {
1297 immediate_quit = 0;
1298 return 0;
1299 }
1300 DEC_BOTH (from, from_byte);
1301 UPDATE_SYNTAX_TABLE_BACKWARD (from);
1302 ch1 = FETCH_CHAR_AS_MULTIBYTE (from_byte);
1303 code = SYNTAX (ch1);
1304 if (words_include_escapes
1305 && (code == Sescape || code == Scharquote))
1306 break;
1307 if (code == Sword)
1308 break;
1309 }
1310 /* Now CH1 is a character which ends a word and FROM is the
1311 position of it. */
1312 func = CHAR_TABLE_REF (Vfind_word_boundary_function_table, ch1);
1313 if (! NILP (Ffboundp (func)))
1314 {
1315 pos = call2 (func, make_number (from), make_number (beg));
1316 if (INTEGERP (pos) && BEGV <= XINT (pos) && XINT (pos) < from)
1317 {
1318 from = XINT (pos);
1319 from_byte = CHAR_TO_BYTE (from);
1320 }
1321 }
1322 else
1323 {
1324 while (1)
1325 {
1326 if (from == beg)
1327 break;
1328 DEC_BOTH (from, from_byte);
1329 UPDATE_SYNTAX_TABLE_BACKWARD (from);
1330 ch0 = FETCH_CHAR_AS_MULTIBYTE (from_byte);
1331 code = SYNTAX (ch0);
1332 if ((code != Sword
1333 && (! words_include_escapes
1334 || (code != Sescape && code != Scharquote)))
1335 || word_boundary_p (ch0, ch1))
1336 {
1337 INC_BOTH (from, from_byte);
1338 break;
1339 }
1340 ch1 = ch0;
1341 }
1342 }
1343 count++;
1344 }
1345
1346 immediate_quit = 0;
1347
1348 return from;
1349 }
1350
1351 DEFUN ("forward-word", Fforward_word, Sforward_word, 0, 1, "^p",
1352 doc: /* Move point forward ARG words (backward if ARG is negative).
1353 Normally returns t.
1354 If an edge of the buffer or a field boundary is reached, point is left there
1355 and the function returns nil. Field boundaries are not noticed if
1356 `inhibit-field-text-motion' is non-nil. */)
1357 (Lisp_Object arg)
1358 {
1359 Lisp_Object tmp;
1360 ptrdiff_t orig_val, val;
1361
1362 if (NILP (arg))
1363 XSETFASTINT (arg, 1);
1364 else
1365 CHECK_NUMBER (arg);
1366
1367 val = orig_val = scan_words (PT, XINT (arg));
1368 if (! orig_val)
1369 val = XINT (arg) > 0 ? ZV : BEGV;
1370
1371 /* Avoid jumping out of an input field. */
1372 tmp = Fconstrain_to_field (make_number (val), make_number (PT),
1373 Qt, Qnil, Qnil);
1374 val = XFASTINT (tmp);
1375
1376 SET_PT (val);
1377 return val == orig_val ? Qt : Qnil;
1378 }
1379 \f
1380 DEFUN ("skip-chars-forward", Fskip_chars_forward, Sskip_chars_forward, 1, 2, 0,
1381 doc: /* Move point forward, stopping before a char not in STRING, or at pos LIM.
1382 STRING is like the inside of a `[...]' in a regular expression
1383 except that `]' is never special and `\\' quotes `^', `-' or `\\'
1384 (but not at the end of a range; quoting is never needed there).
1385 Thus, with arg "a-zA-Z", this skips letters stopping before first nonletter.
1386 With arg "^a-zA-Z", skips nonletters stopping before first letter.
1387 Char classes, e.g. `[:alpha:]', are supported.
1388
1389 Returns the distance traveled, either zero or positive. */)
1390 (Lisp_Object string, Lisp_Object lim)
1391 {
1392 return skip_chars (1, string, lim, 1);
1393 }
1394
1395 DEFUN ("skip-chars-backward", Fskip_chars_backward, Sskip_chars_backward, 1, 2, 0,
1396 doc: /* Move point backward, stopping after a char not in STRING, or at pos LIM.
1397 See `skip-chars-forward' for details.
1398 Returns the distance traveled, either zero or negative. */)
1399 (Lisp_Object string, Lisp_Object lim)
1400 {
1401 return skip_chars (0, string, lim, 1);
1402 }
1403
1404 DEFUN ("skip-syntax-forward", Fskip_syntax_forward, Sskip_syntax_forward, 1, 2, 0,
1405 doc: /* Move point forward across chars in specified syntax classes.
1406 SYNTAX is a string of syntax code characters.
1407 Stop before a char whose syntax is not in SYNTAX, or at position LIM.
1408 If SYNTAX starts with ^, skip characters whose syntax is NOT in SYNTAX.
1409 This function returns the distance traveled, either zero or positive. */)
1410 (Lisp_Object syntax, Lisp_Object lim)
1411 {
1412 return skip_syntaxes (1, syntax, lim);
1413 }
1414
1415 DEFUN ("skip-syntax-backward", Fskip_syntax_backward, Sskip_syntax_backward, 1, 2, 0,
1416 doc: /* Move point backward across chars in specified syntax classes.
1417 SYNTAX is a string of syntax code characters.
1418 Stop on reaching a char whose syntax is not in SYNTAX, or at position LIM.
1419 If SYNTAX starts with ^, skip characters whose syntax is NOT in SYNTAX.
1420 This function returns the distance traveled, either zero or negative. */)
1421 (Lisp_Object syntax, Lisp_Object lim)
1422 {
1423 return skip_syntaxes (0, syntax, lim);
1424 }
1425
1426 static Lisp_Object
1427 skip_chars (int forwardp, Lisp_Object string, Lisp_Object lim, int handle_iso_classes)
1428 {
1429 register unsigned int c;
1430 unsigned char fastmap[0400];
1431 /* Store the ranges of non-ASCII characters. */
1432 int *char_ranges IF_LINT (= NULL);
1433 int n_char_ranges = 0;
1434 int negate = 0;
1435 register ptrdiff_t i, i_byte;
1436 /* Set to 1 if the current buffer is multibyte and the region
1437 contains non-ASCII chars. */
1438 int multibyte;
1439 /* Set to 1 if STRING is multibyte and it contains non-ASCII
1440 chars. */
1441 int string_multibyte;
1442 ptrdiff_t size_byte;
1443 const unsigned char *str;
1444 int len;
1445 Lisp_Object iso_classes;
1446
1447 CHECK_STRING (string);
1448 iso_classes = Qnil;
1449
1450 if (NILP (lim))
1451 XSETINT (lim, forwardp ? ZV : BEGV);
1452 else
1453 CHECK_NUMBER_COERCE_MARKER (lim);
1454
1455 /* In any case, don't allow scan outside bounds of buffer. */
1456 if (XINT (lim) > ZV)
1457 XSETFASTINT (lim, ZV);
1458 if (XINT (lim) < BEGV)
1459 XSETFASTINT (lim, BEGV);
1460
1461 multibyte = (!NILP (BVAR (current_buffer, enable_multibyte_characters))
1462 && (XINT (lim) - PT != CHAR_TO_BYTE (XINT (lim)) - PT_BYTE));
1463 string_multibyte = SBYTES (string) > SCHARS (string);
1464
1465 memset (fastmap, 0, sizeof fastmap);
1466
1467 str = SDATA (string);
1468 size_byte = SBYTES (string);
1469
1470 i_byte = 0;
1471 if (i_byte < size_byte
1472 && SREF (string, 0) == '^')
1473 {
1474 negate = 1; i_byte++;
1475 }
1476
1477 /* Find the characters specified and set their elements of fastmap.
1478 Handle backslashes and ranges specially.
1479
1480 If STRING contains non-ASCII characters, setup char_ranges for
1481 them and use fastmap only for their leading codes. */
1482
1483 if (! string_multibyte)
1484 {
1485 int string_has_eight_bit = 0;
1486
1487 /* At first setup fastmap. */
1488 while (i_byte < size_byte)
1489 {
1490 c = str[i_byte++];
1491
1492 if (handle_iso_classes && c == '['
1493 && i_byte < size_byte
1494 && str[i_byte] == ':')
1495 {
1496 const unsigned char *class_beg = str + i_byte + 1;
1497 const unsigned char *class_end = class_beg;
1498 const unsigned char *class_limit = str + size_byte - 2;
1499 /* Leave room for the null. */
1500 unsigned char class_name[CHAR_CLASS_MAX_LENGTH + 1];
1501 re_wctype_t cc;
1502
1503 if (class_limit - class_beg > CHAR_CLASS_MAX_LENGTH)
1504 class_limit = class_beg + CHAR_CLASS_MAX_LENGTH;
1505
1506 while (class_end < class_limit
1507 && *class_end >= 'a' && *class_end <= 'z')
1508 class_end++;
1509
1510 if (class_end == class_beg
1511 || *class_end != ':' || class_end[1] != ']')
1512 goto not_a_class_name;
1513
1514 memcpy (class_name, class_beg, class_end - class_beg);
1515 class_name[class_end - class_beg] = 0;
1516
1517 cc = re_wctype (class_name);
1518 if (cc == 0)
1519 error ("Invalid ISO C character class");
1520
1521 iso_classes = Fcons (make_number (cc), iso_classes);
1522
1523 i_byte = class_end + 2 - str;
1524 continue;
1525 }
1526
1527 not_a_class_name:
1528 if (c == '\\')
1529 {
1530 if (i_byte == size_byte)
1531 break;
1532
1533 c = str[i_byte++];
1534 }
1535 /* Treat `-' as range character only if another character
1536 follows. */
1537 if (i_byte + 1 < size_byte
1538 && str[i_byte] == '-')
1539 {
1540 unsigned int c2;
1541
1542 /* Skip over the dash. */
1543 i_byte++;
1544
1545 /* Get the end of the range. */
1546 c2 = str[i_byte++];
1547 if (c2 == '\\'
1548 && i_byte < size_byte)
1549 c2 = str[i_byte++];
1550
1551 if (c <= c2)
1552 {
1553 unsigned lim2 = c2 + 1;
1554 while (c < lim2)
1555 fastmap[c++] = 1;
1556 if (! ASCII_CHAR_P (c2))
1557 string_has_eight_bit = 1;
1558 }
1559 }
1560 else
1561 {
1562 fastmap[c] = 1;
1563 if (! ASCII_CHAR_P (c))
1564 string_has_eight_bit = 1;
1565 }
1566 }
1567
1568 /* If the current range is multibyte and STRING contains
1569 eight-bit chars, arrange fastmap and setup char_ranges for
1570 the corresponding multibyte chars. */
1571 if (multibyte && string_has_eight_bit)
1572 {
1573 unsigned char fastmap2[0400];
1574 int range_start_byte, range_start_char;
1575
1576 memcpy (fastmap + 0200, fastmap2 + 0200, 0200);
1577 memset (fastmap + 0200, 0, 0200);
1578 /* We are sure that this loop stops. */
1579 for (i = 0200; ! fastmap2[i]; i++);
1580 c = BYTE8_TO_CHAR (i);
1581 fastmap[CHAR_LEADING_CODE (c)] = 1;
1582 range_start_byte = i;
1583 range_start_char = c;
1584 char_ranges = alloca (sizeof *char_ranges * 128 * 2);
1585 for (i = 129; i < 0400; i++)
1586 {
1587 c = BYTE8_TO_CHAR (i);
1588 fastmap[CHAR_LEADING_CODE (c)] = 1;
1589 if (i - range_start_byte != c - range_start_char)
1590 {
1591 char_ranges[n_char_ranges++] = range_start_char;
1592 char_ranges[n_char_ranges++] = ((i - 1 - range_start_byte)
1593 + range_start_char);
1594 range_start_byte = i;
1595 range_start_char = c;
1596 }
1597 }
1598 char_ranges[n_char_ranges++] = range_start_char;
1599 char_ranges[n_char_ranges++] = ((i - 1 - range_start_byte)
1600 + range_start_char);
1601 }
1602 }
1603 else /* STRING is multibyte */
1604 {
1605 char_ranges = alloca (sizeof *char_ranges * SCHARS (string) * 2);
1606
1607 while (i_byte < size_byte)
1608 {
1609 unsigned char leading_code;
1610
1611 leading_code = str[i_byte];
1612 c = STRING_CHAR_AND_LENGTH (str + i_byte, len);
1613 i_byte += len;
1614
1615 if (handle_iso_classes && c == '['
1616 && i_byte < size_byte
1617 && STRING_CHAR (str + i_byte) == ':')
1618 {
1619 const unsigned char *class_beg = str + i_byte + 1;
1620 const unsigned char *class_end = class_beg;
1621 const unsigned char *class_limit = str + size_byte - 2;
1622 /* Leave room for the null. */
1623 unsigned char class_name[CHAR_CLASS_MAX_LENGTH + 1];
1624 re_wctype_t cc;
1625
1626 if (class_limit - class_beg > CHAR_CLASS_MAX_LENGTH)
1627 class_limit = class_beg + CHAR_CLASS_MAX_LENGTH;
1628
1629 while (class_end < class_limit
1630 && *class_end >= 'a' && *class_end <= 'z')
1631 class_end++;
1632
1633 if (class_end == class_beg
1634 || *class_end != ':' || class_end[1] != ']')
1635 goto not_a_class_name_multibyte;
1636
1637 memcpy (class_name, class_beg, class_end - class_beg);
1638 class_name[class_end - class_beg] = 0;
1639
1640 cc = re_wctype (class_name);
1641 if (cc == 0)
1642 error ("Invalid ISO C character class");
1643
1644 iso_classes = Fcons (make_number (cc), iso_classes);
1645
1646 i_byte = class_end + 2 - str;
1647 continue;
1648 }
1649
1650 not_a_class_name_multibyte:
1651 if (c == '\\')
1652 {
1653 if (i_byte == size_byte)
1654 break;
1655
1656 leading_code = str[i_byte];
1657 c = STRING_CHAR_AND_LENGTH (str + i_byte, len);
1658 i_byte += len;
1659 }
1660 /* Treat `-' as range character only if another character
1661 follows. */
1662 if (i_byte + 1 < size_byte
1663 && str[i_byte] == '-')
1664 {
1665 unsigned int c2;
1666 unsigned char leading_code2;
1667
1668 /* Skip over the dash. */
1669 i_byte++;
1670
1671 /* Get the end of the range. */
1672 leading_code2 = str[i_byte];
1673 c2 = STRING_CHAR_AND_LENGTH (str + i_byte, len);
1674 i_byte += len;
1675
1676 if (c2 == '\\'
1677 && i_byte < size_byte)
1678 {
1679 leading_code2 = str[i_byte];
1680 c2 =STRING_CHAR_AND_LENGTH (str + i_byte, len);
1681 i_byte += len;
1682 }
1683
1684 if (c > c2)
1685 continue;
1686 if (ASCII_CHAR_P (c))
1687 {
1688 while (c <= c2 && c < 0x80)
1689 fastmap[c++] = 1;
1690 leading_code = CHAR_LEADING_CODE (c);
1691 }
1692 if (! ASCII_CHAR_P (c))
1693 {
1694 unsigned lim2 = leading_code2 + 1;
1695 while (leading_code < lim2)
1696 fastmap[leading_code++] = 1;
1697 if (c <= c2)
1698 {
1699 char_ranges[n_char_ranges++] = c;
1700 char_ranges[n_char_ranges++] = c2;
1701 }
1702 }
1703 }
1704 else
1705 {
1706 if (ASCII_CHAR_P (c))
1707 fastmap[c] = 1;
1708 else
1709 {
1710 fastmap[leading_code] = 1;
1711 char_ranges[n_char_ranges++] = c;
1712 char_ranges[n_char_ranges++] = c;
1713 }
1714 }
1715 }
1716
1717 /* If the current range is unibyte and STRING contains non-ASCII
1718 chars, arrange fastmap for the corresponding unibyte
1719 chars. */
1720
1721 if (! multibyte && n_char_ranges > 0)
1722 {
1723 memset (fastmap + 0200, 0, 0200);
1724 for (i = 0; i < n_char_ranges; i += 2)
1725 {
1726 int c1 = char_ranges[i];
1727 unsigned lim2 = char_ranges[i + 1] + 1;
1728
1729 for (; c1 < lim2; c1++)
1730 {
1731 int b = CHAR_TO_BYTE_SAFE (c1);
1732 if (b >= 0)
1733 fastmap[b] = 1;
1734 }
1735 }
1736 }
1737 }
1738
1739 /* If ^ was the first character, complement the fastmap. */
1740 if (negate)
1741 {
1742 if (! multibyte)
1743 for (i = 0; i < sizeof fastmap; i++)
1744 fastmap[i] ^= 1;
1745 else
1746 {
1747 for (i = 0; i < 0200; i++)
1748 fastmap[i] ^= 1;
1749 /* All non-ASCII chars possibly match. */
1750 for (; i < sizeof fastmap; i++)
1751 fastmap[i] = 1;
1752 }
1753 }
1754
1755 {
1756 ptrdiff_t start_point = PT;
1757 ptrdiff_t pos = PT;
1758 ptrdiff_t pos_byte = PT_BYTE;
1759 unsigned char *p = PT_ADDR, *endp, *stop;
1760
1761 if (forwardp)
1762 {
1763 endp = (XINT (lim) == GPT) ? GPT_ADDR : CHAR_POS_ADDR (XINT (lim));
1764 stop = (pos < GPT && GPT < XINT (lim)) ? GPT_ADDR : endp;
1765 }
1766 else
1767 {
1768 endp = CHAR_POS_ADDR (XINT (lim));
1769 stop = (pos >= GPT && GPT > XINT (lim)) ? GAP_END_ADDR : endp;
1770 }
1771
1772 immediate_quit = 1;
1773 /* This code may look up syntax tables using macros that rely on the
1774 gl_state object. To make sure this object is not out of date,
1775 let's initialize it manually.
1776 We ignore syntax-table text-properties for now, since that's
1777 what we've done in the past. */
1778 SETUP_BUFFER_SYNTAX_TABLE ();
1779 if (forwardp)
1780 {
1781 if (multibyte)
1782 while (1)
1783 {
1784 int nbytes;
1785
1786 if (p >= stop)
1787 {
1788 if (p >= endp)
1789 break;
1790 p = GAP_END_ADDR;
1791 stop = endp;
1792 }
1793 c = STRING_CHAR_AND_LENGTH (p, nbytes);
1794 if (! NILP (iso_classes) && in_classes (c, iso_classes))
1795 {
1796 if (negate)
1797 break;
1798 else
1799 goto fwd_ok;
1800 }
1801
1802 if (! fastmap[*p])
1803 break;
1804 if (! ASCII_CHAR_P (c))
1805 {
1806 /* As we are looking at a multibyte character, we
1807 must look up the character in the table
1808 CHAR_RANGES. If there's no data in the table,
1809 that character is not what we want to skip. */
1810
1811 /* The following code do the right thing even if
1812 n_char_ranges is zero (i.e. no data in
1813 CHAR_RANGES). */
1814 for (i = 0; i < n_char_ranges; i += 2)
1815 if (c >= char_ranges[i] && c <= char_ranges[i + 1])
1816 break;
1817 if (!(negate ^ (i < n_char_ranges)))
1818 break;
1819 }
1820 fwd_ok:
1821 p += nbytes, pos++, pos_byte += nbytes;
1822 }
1823 else
1824 while (1)
1825 {
1826 if (p >= stop)
1827 {
1828 if (p >= endp)
1829 break;
1830 p = GAP_END_ADDR;
1831 stop = endp;
1832 }
1833
1834 if (!NILP (iso_classes) && in_classes (*p, iso_classes))
1835 {
1836 if (negate)
1837 break;
1838 else
1839 goto fwd_unibyte_ok;
1840 }
1841
1842 if (!fastmap[*p])
1843 break;
1844 fwd_unibyte_ok:
1845 p++, pos++, pos_byte++;
1846 }
1847 }
1848 else
1849 {
1850 if (multibyte)
1851 while (1)
1852 {
1853 unsigned char *prev_p;
1854
1855 if (p <= stop)
1856 {
1857 if (p <= endp)
1858 break;
1859 p = GPT_ADDR;
1860 stop = endp;
1861 }
1862 prev_p = p;
1863 while (--p >= stop && ! CHAR_HEAD_P (*p));
1864 c = STRING_CHAR (p);
1865
1866 if (! NILP (iso_classes) && in_classes (c, iso_classes))
1867 {
1868 if (negate)
1869 break;
1870 else
1871 goto back_ok;
1872 }
1873
1874 if (! fastmap[*p])
1875 break;
1876 if (! ASCII_CHAR_P (c))
1877 {
1878 /* See the comment in the previous similar code. */
1879 for (i = 0; i < n_char_ranges; i += 2)
1880 if (c >= char_ranges[i] && c <= char_ranges[i + 1])
1881 break;
1882 if (!(negate ^ (i < n_char_ranges)))
1883 break;
1884 }
1885 back_ok:
1886 pos--, pos_byte -= prev_p - p;
1887 }
1888 else
1889 while (1)
1890 {
1891 if (p <= stop)
1892 {
1893 if (p <= endp)
1894 break;
1895 p = GPT_ADDR;
1896 stop = endp;
1897 }
1898
1899 if (! NILP (iso_classes) && in_classes (p[-1], iso_classes))
1900 {
1901 if (negate)
1902 break;
1903 else
1904 goto back_unibyte_ok;
1905 }
1906
1907 if (!fastmap[p[-1]])
1908 break;
1909 back_unibyte_ok:
1910 p--, pos--, pos_byte--;
1911 }
1912 }
1913
1914 SET_PT_BOTH (pos, pos_byte);
1915 immediate_quit = 0;
1916
1917 return make_number (PT - start_point);
1918 }
1919 }
1920
1921
1922 static Lisp_Object
1923 skip_syntaxes (int forwardp, Lisp_Object string, Lisp_Object lim)
1924 {
1925 register unsigned int c;
1926 unsigned char fastmap[0400];
1927 int negate = 0;
1928 register ptrdiff_t i, i_byte;
1929 int multibyte;
1930 ptrdiff_t size_byte;
1931 unsigned char *str;
1932
1933 CHECK_STRING (string);
1934
1935 if (NILP (lim))
1936 XSETINT (lim, forwardp ? ZV : BEGV);
1937 else
1938 CHECK_NUMBER_COERCE_MARKER (lim);
1939
1940 /* In any case, don't allow scan outside bounds of buffer. */
1941 if (XINT (lim) > ZV)
1942 XSETFASTINT (lim, ZV);
1943 if (XINT (lim) < BEGV)
1944 XSETFASTINT (lim, BEGV);
1945
1946 if (forwardp ? (PT >= XFASTINT (lim)) : (PT <= XFASTINT (lim)))
1947 return make_number (0);
1948
1949 multibyte = (!NILP (BVAR (current_buffer, enable_multibyte_characters))
1950 && (XINT (lim) - PT != CHAR_TO_BYTE (XINT (lim)) - PT_BYTE));
1951
1952 memset (fastmap, 0, sizeof fastmap);
1953
1954 if (SBYTES (string) > SCHARS (string))
1955 /* As this is very rare case (syntax spec is ASCII only), don't
1956 consider efficiency. */
1957 string = string_make_unibyte (string);
1958
1959 str = SDATA (string);
1960 size_byte = SBYTES (string);
1961
1962 i_byte = 0;
1963 if (i_byte < size_byte
1964 && SREF (string, 0) == '^')
1965 {
1966 negate = 1; i_byte++;
1967 }
1968
1969 /* Find the syntaxes specified and set their elements of fastmap. */
1970
1971 while (i_byte < size_byte)
1972 {
1973 c = str[i_byte++];
1974 fastmap[syntax_spec_code[c]] = 1;
1975 }
1976
1977 /* If ^ was the first character, complement the fastmap. */
1978 if (negate)
1979 for (i = 0; i < sizeof fastmap; i++)
1980 fastmap[i] ^= 1;
1981
1982 {
1983 ptrdiff_t start_point = PT;
1984 ptrdiff_t pos = PT;
1985 ptrdiff_t pos_byte = PT_BYTE;
1986 unsigned char *p = PT_ADDR, *endp, *stop;
1987
1988 if (forwardp)
1989 {
1990 endp = (XINT (lim) == GPT) ? GPT_ADDR : CHAR_POS_ADDR (XINT (lim));
1991 stop = (pos < GPT && GPT < XINT (lim)) ? GPT_ADDR : endp;
1992 }
1993 else
1994 {
1995 endp = CHAR_POS_ADDR (XINT (lim));
1996 stop = (pos >= GPT && GPT > XINT (lim)) ? GAP_END_ADDR : endp;
1997 }
1998
1999 immediate_quit = 1;
2000 SETUP_SYNTAX_TABLE (pos, forwardp ? 1 : -1);
2001 if (forwardp)
2002 {
2003 if (multibyte)
2004 {
2005 while (1)
2006 {
2007 int nbytes;
2008
2009 if (p >= stop)
2010 {
2011 if (p >= endp)
2012 break;
2013 p = GAP_END_ADDR;
2014 stop = endp;
2015 }
2016 c = STRING_CHAR_AND_LENGTH (p, nbytes);
2017 if (! fastmap[(int) SYNTAX (c)])
2018 break;
2019 p += nbytes, pos++, pos_byte += nbytes;
2020 UPDATE_SYNTAX_TABLE_FORWARD (pos);
2021 }
2022 }
2023 else
2024 {
2025 while (1)
2026 {
2027 if (p >= stop)
2028 {
2029 if (p >= endp)
2030 break;
2031 p = GAP_END_ADDR;
2032 stop = endp;
2033 }
2034 if (! fastmap[(int) SYNTAX (*p)])
2035 break;
2036 p++, pos++, pos_byte++;
2037 UPDATE_SYNTAX_TABLE_FORWARD (pos);
2038 }
2039 }
2040 }
2041 else
2042 {
2043 if (multibyte)
2044 {
2045 while (1)
2046 {
2047 unsigned char *prev_p;
2048
2049 if (p <= stop)
2050 {
2051 if (p <= endp)
2052 break;
2053 p = GPT_ADDR;
2054 stop = endp;
2055 }
2056 UPDATE_SYNTAX_TABLE_BACKWARD (pos - 1);
2057 prev_p = p;
2058 while (--p >= stop && ! CHAR_HEAD_P (*p));
2059 c = STRING_CHAR (p);
2060 if (! fastmap[(int) SYNTAX (c)])
2061 break;
2062 pos--, pos_byte -= prev_p - p;
2063 }
2064 }
2065 else
2066 {
2067 while (1)
2068 {
2069 if (p <= stop)
2070 {
2071 if (p <= endp)
2072 break;
2073 p = GPT_ADDR;
2074 stop = endp;
2075 }
2076 UPDATE_SYNTAX_TABLE_BACKWARD (pos - 1);
2077 if (! fastmap[(int) SYNTAX (p[-1])])
2078 break;
2079 p--, pos--, pos_byte--;
2080 }
2081 }
2082 }
2083
2084 SET_PT_BOTH (pos, pos_byte);
2085 immediate_quit = 0;
2086
2087 return make_number (PT - start_point);
2088 }
2089 }
2090
2091 /* Return 1 if character C belongs to one of the ISO classes
2092 in the list ISO_CLASSES. Each class is represented by an
2093 integer which is its type according to re_wctype. */
2094
2095 static int
2096 in_classes (int c, Lisp_Object iso_classes)
2097 {
2098 int fits_class = 0;
2099
2100 while (CONSP (iso_classes))
2101 {
2102 Lisp_Object elt;
2103 elt = XCAR (iso_classes);
2104 iso_classes = XCDR (iso_classes);
2105
2106 if (re_iswctype (c, XFASTINT (elt)))
2107 fits_class = 1;
2108 }
2109
2110 return fits_class;
2111 }
2112 \f
2113 /* Jump over a comment, assuming we are at the beginning of one.
2114 FROM is the current position.
2115 FROM_BYTE is the bytepos corresponding to FROM.
2116 Do not move past STOP (a charpos).
2117 The comment over which we have to jump is of style STYLE
2118 (either SYNTAX_FLAGS_COMMENT_STYLE(foo) or ST_COMMENT_STYLE).
2119 NESTING should be positive to indicate the nesting at the beginning
2120 for nested comments and should be zero or negative else.
2121 ST_COMMENT_STYLE cannot be nested.
2122 PREV_SYNTAX is the SYNTAX_WITH_FLAGS of the previous character
2123 (or 0 If the search cannot start in the middle of a two-character).
2124
2125 If successful, return 1 and store the charpos of the comment's end
2126 into *CHARPOS_PTR and the corresponding bytepos into *BYTEPOS_PTR.
2127 Else, return 0 and store the charpos STOP into *CHARPOS_PTR, the
2128 corresponding bytepos into *BYTEPOS_PTR and the current nesting
2129 (as defined for state.incomment) in *INCOMMENT_PTR.
2130
2131 The comment end is the last character of the comment rather than the
2132 character just after the comment.
2133
2134 Global syntax data is assumed to initially be valid for FROM and
2135 remains valid for forward search starting at the returned position. */
2136
2137 static int
2138 forw_comment (ptrdiff_t from, ptrdiff_t from_byte, ptrdiff_t stop,
2139 EMACS_INT nesting, int style, int prev_syntax,
2140 ptrdiff_t *charpos_ptr, ptrdiff_t *bytepos_ptr,
2141 EMACS_INT *incomment_ptr)
2142 {
2143 register int c, c1;
2144 register enum syntaxcode code;
2145 register int syntax, other_syntax;
2146
2147 if (nesting <= 0) nesting = -1;
2148
2149 /* Enter the loop in the middle so that we find
2150 a 2-char comment ender if we start in the middle of it. */
2151 syntax = prev_syntax;
2152 if (syntax != 0) goto forw_incomment;
2153
2154 while (1)
2155 {
2156 if (from == stop)
2157 {
2158 *incomment_ptr = nesting;
2159 *charpos_ptr = from;
2160 *bytepos_ptr = from_byte;
2161 return 0;
2162 }
2163 c = FETCH_CHAR_AS_MULTIBYTE (from_byte);
2164 syntax = SYNTAX_WITH_FLAGS (c);
2165 code = syntax & 0xff;
2166 if (code == Sendcomment
2167 && SYNTAX_FLAGS_COMMENT_STYLE (syntax, 0) == style
2168 && (SYNTAX_FLAGS_COMMENT_NESTED (syntax) ?
2169 (nesting > 0 && --nesting == 0) : nesting < 0))
2170 /* we have encountered a comment end of the same style
2171 as the comment sequence which began this comment
2172 section */
2173 break;
2174 if (code == Scomment_fence
2175 && style == ST_COMMENT_STYLE)
2176 /* we have encountered a comment end of the same style
2177 as the comment sequence which began this comment
2178 section. */
2179 break;
2180 if (nesting > 0
2181 && code == Scomment
2182 && SYNTAX_FLAGS_COMMENT_NESTED (syntax)
2183 && SYNTAX_FLAGS_COMMENT_STYLE (syntax, 0) == style)
2184 /* we have encountered a nested comment of the same style
2185 as the comment sequence which began this comment section */
2186 nesting++;
2187 INC_BOTH (from, from_byte);
2188 UPDATE_SYNTAX_TABLE_FORWARD (from);
2189
2190 forw_incomment:
2191 if (from < stop && SYNTAX_FLAGS_COMEND_FIRST (syntax)
2192 && (c1 = FETCH_CHAR_AS_MULTIBYTE (from_byte),
2193 other_syntax = SYNTAX_WITH_FLAGS (c1),
2194 SYNTAX_FLAGS_COMEND_SECOND (other_syntax))
2195 && SYNTAX_FLAGS_COMMENT_STYLE (syntax, other_syntax) == style
2196 && ((SYNTAX_FLAGS_COMMENT_NESTED (syntax) ||
2197 SYNTAX_FLAGS_COMMENT_NESTED (other_syntax))
2198 ? nesting > 0 : nesting < 0))
2199 {
2200 if (--nesting <= 0)
2201 /* we have encountered a comment end of the same style
2202 as the comment sequence which began this comment
2203 section */
2204 break;
2205 else
2206 {
2207 INC_BOTH (from, from_byte);
2208 UPDATE_SYNTAX_TABLE_FORWARD (from);
2209 }
2210 }
2211 if (nesting > 0
2212 && from < stop
2213 && SYNTAX_FLAGS_COMSTART_FIRST (syntax)
2214 && (c1 = FETCH_CHAR_AS_MULTIBYTE (from_byte),
2215 other_syntax = SYNTAX_WITH_FLAGS (c1),
2216 SYNTAX_FLAGS_COMMENT_STYLE (other_syntax, syntax) == style
2217 && SYNTAX_FLAGS_COMSTART_SECOND (other_syntax))
2218 && (SYNTAX_FLAGS_COMMENT_NESTED (syntax) ||
2219 SYNTAX_FLAGS_COMMENT_NESTED (other_syntax)))
2220 /* we have encountered a nested comment of the same style
2221 as the comment sequence which began this comment
2222 section */
2223 {
2224 INC_BOTH (from, from_byte);
2225 UPDATE_SYNTAX_TABLE_FORWARD (from);
2226 nesting++;
2227 }
2228 }
2229 *charpos_ptr = from;
2230 *bytepos_ptr = from_byte;
2231 return 1;
2232 }
2233
2234 DEFUN ("forward-comment", Fforward_comment, Sforward_comment, 1, 1, 0,
2235 doc: /*
2236 Move forward across up to COUNT comments. If COUNT is negative, move backward.
2237 Stop scanning if we find something other than a comment or whitespace.
2238 Set point to where scanning stops.
2239 If COUNT comments are found as expected, with nothing except whitespace
2240 between them, return t; otherwise return nil. */)
2241 (Lisp_Object count)
2242 {
2243 register ptrdiff_t from;
2244 ptrdiff_t from_byte;
2245 register ptrdiff_t stop;
2246 register int c, c1;
2247 register enum syntaxcode code;
2248 int comstyle = 0; /* style of comment encountered */
2249 int comnested = 0; /* whether the comment is nestable or not */
2250 int found;
2251 EMACS_INT count1;
2252 ptrdiff_t out_charpos, out_bytepos;
2253 EMACS_INT dummy;
2254
2255 CHECK_NUMBER (count);
2256 count1 = XINT (count);
2257 stop = count1 > 0 ? ZV : BEGV;
2258
2259 immediate_quit = 1;
2260 QUIT;
2261
2262 from = PT;
2263 from_byte = PT_BYTE;
2264
2265 SETUP_SYNTAX_TABLE (from, count1);
2266 while (count1 > 0)
2267 {
2268 do
2269 {
2270 int comstart_first, syntax, other_syntax;
2271
2272 if (from == stop)
2273 {
2274 SET_PT_BOTH (from, from_byte);
2275 immediate_quit = 0;
2276 return Qnil;
2277 }
2278 c = FETCH_CHAR_AS_MULTIBYTE (from_byte);
2279 syntax = SYNTAX_WITH_FLAGS (c);
2280 code = SYNTAX (c);
2281 comstart_first = SYNTAX_FLAGS_COMSTART_FIRST (syntax);
2282 comnested = SYNTAX_FLAGS_COMMENT_NESTED (syntax);
2283 comstyle = SYNTAX_FLAGS_COMMENT_STYLE (syntax, 0);
2284 INC_BOTH (from, from_byte);
2285 UPDATE_SYNTAX_TABLE_FORWARD (from);
2286 if (from < stop && comstart_first
2287 && (c1 = FETCH_CHAR_AS_MULTIBYTE (from_byte),
2288 other_syntax = SYNTAX_WITH_FLAGS (c1),
2289 SYNTAX_FLAGS_COMSTART_SECOND (other_syntax)))
2290 {
2291 /* We have encountered a comment start sequence and we
2292 are ignoring all text inside comments. We must record
2293 the comment style this sequence begins so that later,
2294 only a comment end of the same style actually ends
2295 the comment section. */
2296 code = Scomment;
2297 comstyle = SYNTAX_FLAGS_COMMENT_STYLE (other_syntax, syntax);
2298 comnested
2299 = comnested || SYNTAX_FLAGS_COMMENT_NESTED (other_syntax);
2300 INC_BOTH (from, from_byte);
2301 UPDATE_SYNTAX_TABLE_FORWARD (from);
2302 }
2303 }
2304 while (code == Swhitespace || (code == Sendcomment && c == '\n'));
2305
2306 if (code == Scomment_fence)
2307 comstyle = ST_COMMENT_STYLE;
2308 else if (code != Scomment)
2309 {
2310 immediate_quit = 0;
2311 DEC_BOTH (from, from_byte);
2312 SET_PT_BOTH (from, from_byte);
2313 return Qnil;
2314 }
2315 /* We're at the start of a comment. */
2316 found = forw_comment (from, from_byte, stop, comnested, comstyle, 0,
2317 &out_charpos, &out_bytepos, &dummy);
2318 from = out_charpos; from_byte = out_bytepos;
2319 if (!found)
2320 {
2321 immediate_quit = 0;
2322 SET_PT_BOTH (from, from_byte);
2323 return Qnil;
2324 }
2325 INC_BOTH (from, from_byte);
2326 UPDATE_SYNTAX_TABLE_FORWARD (from);
2327 /* We have skipped one comment. */
2328 count1--;
2329 }
2330
2331 while (count1 < 0)
2332 {
2333 while (1)
2334 {
2335 int quoted, syntax;
2336
2337 if (from <= stop)
2338 {
2339 SET_PT_BOTH (BEGV, BEGV_BYTE);
2340 immediate_quit = 0;
2341 return Qnil;
2342 }
2343
2344 DEC_BOTH (from, from_byte);
2345 /* char_quoted does UPDATE_SYNTAX_TABLE_BACKWARD (from). */
2346 quoted = char_quoted (from, from_byte);
2347 c = FETCH_CHAR_AS_MULTIBYTE (from_byte);
2348 syntax = SYNTAX_WITH_FLAGS (c);
2349 code = SYNTAX (c);
2350 comstyle = 0;
2351 comnested = SYNTAX_FLAGS_COMMENT_NESTED (syntax);
2352 if (code == Sendcomment)
2353 comstyle = SYNTAX_FLAGS_COMMENT_STYLE (syntax, 0);
2354 if (from > stop && SYNTAX_FLAGS_COMEND_SECOND (syntax)
2355 && prev_char_comend_first (from, from_byte)
2356 && !char_quoted (from - 1, dec_bytepos (from_byte)))
2357 {
2358 int other_syntax;
2359 /* We must record the comment style encountered so that
2360 later, we can match only the proper comment begin
2361 sequence of the same style. */
2362 DEC_BOTH (from, from_byte);
2363 code = Sendcomment;
2364 /* Calling char_quoted, above, set up global syntax position
2365 at the new value of FROM. */
2366 c1 = FETCH_CHAR_AS_MULTIBYTE (from_byte);
2367 other_syntax = SYNTAX_WITH_FLAGS (c1);
2368 comstyle = SYNTAX_FLAGS_COMMENT_STYLE (other_syntax, syntax);
2369 comnested
2370 = comnested || SYNTAX_FLAGS_COMMENT_NESTED (other_syntax);
2371 }
2372
2373 if (code == Scomment_fence)
2374 {
2375 /* Skip until first preceding unquoted comment_fence. */
2376 int fence_found = 0;
2377 ptrdiff_t ini = from, ini_byte = from_byte;
2378
2379 while (1)
2380 {
2381 DEC_BOTH (from, from_byte);
2382 UPDATE_SYNTAX_TABLE_BACKWARD (from);
2383 c = FETCH_CHAR_AS_MULTIBYTE (from_byte);
2384 if (SYNTAX (c) == Scomment_fence
2385 && !char_quoted (from, from_byte))
2386 {
2387 fence_found = 1;
2388 break;
2389 }
2390 else if (from == stop)
2391 break;
2392 }
2393 if (fence_found == 0)
2394 {
2395 from = ini; /* Set point to ini + 1. */
2396 from_byte = ini_byte;
2397 goto leave;
2398 }
2399 else
2400 /* We have skipped one comment. */
2401 break;
2402 }
2403 else if (code == Sendcomment)
2404 {
2405 found = back_comment (from, from_byte, stop, comnested, comstyle,
2406 &out_charpos, &out_bytepos);
2407 if (found == -1)
2408 {
2409 if (c == '\n')
2410 /* This end-of-line is not an end-of-comment.
2411 Treat it like a whitespace.
2412 CC-mode (and maybe others) relies on this behavior. */
2413 ;
2414 else
2415 {
2416 /* Failure: we should go back to the end of this
2417 not-quite-endcomment. */
2418 if (SYNTAX (c) != code)
2419 /* It was a two-char Sendcomment. */
2420 INC_BOTH (from, from_byte);
2421 goto leave;
2422 }
2423 }
2424 else
2425 {
2426 /* We have skipped one comment. */
2427 from = out_charpos, from_byte = out_bytepos;
2428 break;
2429 }
2430 }
2431 else if (code != Swhitespace || quoted)
2432 {
2433 leave:
2434 immediate_quit = 0;
2435 INC_BOTH (from, from_byte);
2436 SET_PT_BOTH (from, from_byte);
2437 return Qnil;
2438 }
2439 }
2440
2441 count1++;
2442 }
2443
2444 SET_PT_BOTH (from, from_byte);
2445 immediate_quit = 0;
2446 return Qt;
2447 }
2448 \f
2449 /* Return syntax code of character C if C is an ASCII character
2450 or `multibyte_symbol_p' is zero. Otherwise, return Ssymbol. */
2451
2452 #define SYNTAX_WITH_MULTIBYTE_CHECK(c) \
2453 ((ASCII_CHAR_P (c) || !multibyte_symbol_p) \
2454 ? SYNTAX (c) : Ssymbol)
2455
2456 static Lisp_Object
2457 scan_lists (register EMACS_INT from, EMACS_INT count, EMACS_INT depth, int sexpflag)
2458 {
2459 Lisp_Object val;
2460 register ptrdiff_t stop = count > 0 ? ZV : BEGV;
2461 register int c, c1;
2462 int stringterm;
2463 int quoted;
2464 int mathexit = 0;
2465 register enum syntaxcode code, temp_code;
2466 EMACS_INT min_depth = depth; /* Err out if depth gets less than this. */
2467 int comstyle = 0; /* style of comment encountered */
2468 int comnested = 0; /* whether the comment is nestable or not */
2469 ptrdiff_t temp_pos;
2470 EMACS_INT last_good = from;
2471 int found;
2472 ptrdiff_t from_byte;
2473 ptrdiff_t out_bytepos, out_charpos;
2474 int temp;
2475 EMACS_INT dummy;
2476 int multibyte_symbol_p = sexpflag && multibyte_syntax_as_symbol;
2477
2478 if (depth > 0) min_depth = 0;
2479
2480 if (from > ZV) from = ZV;
2481 if (from < BEGV) from = BEGV;
2482
2483 from_byte = CHAR_TO_BYTE (from);
2484
2485 immediate_quit = 1;
2486 QUIT;
2487
2488 SETUP_SYNTAX_TABLE (from, count);
2489 while (count > 0)
2490 {
2491 while (from < stop)
2492 {
2493 int comstart_first, prefix, syntax, other_syntax;
2494 UPDATE_SYNTAX_TABLE_FORWARD (from);
2495 c = FETCH_CHAR_AS_MULTIBYTE (from_byte);
2496 syntax = SYNTAX_WITH_FLAGS (c);
2497 code = SYNTAX_WITH_MULTIBYTE_CHECK (c);
2498 comstart_first = SYNTAX_FLAGS_COMSTART_FIRST (syntax);
2499 comnested = SYNTAX_FLAGS_COMMENT_NESTED (syntax);
2500 comstyle = SYNTAX_FLAGS_COMMENT_STYLE (syntax, 0);
2501 prefix = SYNTAX_FLAGS_PREFIX (syntax);
2502 if (depth == min_depth)
2503 last_good = from;
2504 INC_BOTH (from, from_byte);
2505 UPDATE_SYNTAX_TABLE_FORWARD (from);
2506 if (from < stop && comstart_first
2507 && (c = FETCH_CHAR_AS_MULTIBYTE (from_byte),
2508 other_syntax = SYNTAX_WITH_FLAGS (c),
2509 SYNTAX_FLAGS_COMSTART_SECOND (other_syntax))
2510 && parse_sexp_ignore_comments)
2511 {
2512 /* we have encountered a comment start sequence and we
2513 are ignoring all text inside comments. We must record
2514 the comment style this sequence begins so that later,
2515 only a comment end of the same style actually ends
2516 the comment section */
2517 code = Scomment;
2518 comstyle = SYNTAX_FLAGS_COMMENT_STYLE (other_syntax, syntax);
2519 comnested
2520 = comnested || SYNTAX_FLAGS_COMMENT_NESTED (other_syntax);
2521 INC_BOTH (from, from_byte);
2522 UPDATE_SYNTAX_TABLE_FORWARD (from);
2523 }
2524
2525 if (prefix)
2526 continue;
2527
2528 switch (SWITCH_ENUM_CAST (code))
2529 {
2530 case Sescape:
2531 case Scharquote:
2532 if (from == stop)
2533 goto lose;
2534 INC_BOTH (from, from_byte);
2535 /* treat following character as a word constituent */
2536 case Sword:
2537 case Ssymbol:
2538 if (depth || !sexpflag) break;
2539 /* This word counts as a sexp; return at end of it. */
2540 while (from < stop)
2541 {
2542 UPDATE_SYNTAX_TABLE_FORWARD (from);
2543
2544 /* Some compilers can't handle this inside the switch. */
2545 c = FETCH_CHAR_AS_MULTIBYTE (from_byte);
2546 temp = SYNTAX_WITH_MULTIBYTE_CHECK (c);
2547 switch (temp)
2548 {
2549 case Scharquote:
2550 case Sescape:
2551 INC_BOTH (from, from_byte);
2552 if (from == stop)
2553 goto lose;
2554 break;
2555 case Sword:
2556 case Ssymbol:
2557 case Squote:
2558 break;
2559 default:
2560 goto done;
2561 }
2562 INC_BOTH (from, from_byte);
2563 }
2564 goto done;
2565
2566 case Scomment_fence:
2567 comstyle = ST_COMMENT_STYLE;
2568 /* FALLTHROUGH */
2569 case Scomment:
2570 if (!parse_sexp_ignore_comments) break;
2571 UPDATE_SYNTAX_TABLE_FORWARD (from);
2572 found = forw_comment (from, from_byte, stop,
2573 comnested, comstyle, 0,
2574 &out_charpos, &out_bytepos, &dummy);
2575 from = out_charpos, from_byte = out_bytepos;
2576 if (!found)
2577 {
2578 if (depth == 0)
2579 goto done;
2580 goto lose;
2581 }
2582 INC_BOTH (from, from_byte);
2583 UPDATE_SYNTAX_TABLE_FORWARD (from);
2584 break;
2585
2586 case Smath:
2587 if (!sexpflag)
2588 break;
2589 if (from != stop && c == FETCH_CHAR_AS_MULTIBYTE (from_byte))
2590 {
2591 INC_BOTH (from, from_byte);
2592 }
2593 if (mathexit)
2594 {
2595 mathexit = 0;
2596 goto close1;
2597 }
2598 mathexit = 1;
2599
2600 case Sopen:
2601 if (!++depth) goto done;
2602 break;
2603
2604 case Sclose:
2605 close1:
2606 if (!--depth) goto done;
2607 if (depth < min_depth)
2608 xsignal3 (Qscan_error,
2609 build_string ("Containing expression ends prematurely"),
2610 make_number (last_good), make_number (from));
2611 break;
2612
2613 case Sstring:
2614 case Sstring_fence:
2615 temp_pos = dec_bytepos (from_byte);
2616 stringterm = FETCH_CHAR_AS_MULTIBYTE (temp_pos);
2617 while (1)
2618 {
2619 if (from >= stop)
2620 goto lose;
2621 UPDATE_SYNTAX_TABLE_FORWARD (from);
2622 c = FETCH_CHAR_AS_MULTIBYTE (from_byte);
2623 if (code == Sstring
2624 ? (c == stringterm
2625 && SYNTAX_WITH_MULTIBYTE_CHECK (c) == Sstring)
2626 : SYNTAX_WITH_MULTIBYTE_CHECK (c) == Sstring_fence)
2627 break;
2628
2629 /* Some compilers can't handle this inside the switch. */
2630 temp = SYNTAX_WITH_MULTIBYTE_CHECK (c);
2631 switch (temp)
2632 {
2633 case Scharquote:
2634 case Sescape:
2635 INC_BOTH (from, from_byte);
2636 }
2637 INC_BOTH (from, from_byte);
2638 }
2639 INC_BOTH (from, from_byte);
2640 if (!depth && sexpflag) goto done;
2641 break;
2642 default:
2643 /* Ignore whitespace, punctuation, quote, endcomment. */
2644 break;
2645 }
2646 }
2647
2648 /* Reached end of buffer. Error if within object, return nil if between */
2649 if (depth)
2650 goto lose;
2651
2652 immediate_quit = 0;
2653 return Qnil;
2654
2655 /* End of object reached */
2656 done:
2657 count--;
2658 }
2659
2660 while (count < 0)
2661 {
2662 while (from > stop)
2663 {
2664 int syntax;
2665 DEC_BOTH (from, from_byte);
2666 UPDATE_SYNTAX_TABLE_BACKWARD (from);
2667 c = FETCH_CHAR_AS_MULTIBYTE (from_byte);
2668 syntax= SYNTAX_WITH_FLAGS (c);
2669 code = SYNTAX_WITH_MULTIBYTE_CHECK (c);
2670 if (depth == min_depth)
2671 last_good = from;
2672 comstyle = 0;
2673 comnested = SYNTAX_FLAGS_COMMENT_NESTED (syntax);
2674 if (code == Sendcomment)
2675 comstyle = SYNTAX_FLAGS_COMMENT_STYLE (syntax, 0);
2676 if (from > stop && SYNTAX_FLAGS_COMEND_SECOND (syntax)
2677 && prev_char_comend_first (from, from_byte)
2678 && parse_sexp_ignore_comments)
2679 {
2680 /* We must record the comment style encountered so that
2681 later, we can match only the proper comment begin
2682 sequence of the same style. */
2683 int c2, other_syntax;
2684 DEC_BOTH (from, from_byte);
2685 UPDATE_SYNTAX_TABLE_BACKWARD (from);
2686 code = Sendcomment;
2687 c2 = FETCH_CHAR_AS_MULTIBYTE (from_byte);
2688 other_syntax = SYNTAX_WITH_FLAGS (c2);
2689 comstyle = SYNTAX_FLAGS_COMMENT_STYLE (other_syntax, syntax);
2690 comnested
2691 = comnested || SYNTAX_FLAGS_COMMENT_NESTED (other_syntax);
2692 }
2693
2694 /* Quoting turns anything except a comment-ender
2695 into a word character. Note that this cannot be true
2696 if we decremented FROM in the if-statement above. */
2697 if (code != Sendcomment && char_quoted (from, from_byte))
2698 {
2699 DEC_BOTH (from, from_byte);
2700 code = Sword;
2701 }
2702 else if (SYNTAX_FLAGS_PREFIX (syntax))
2703 continue;
2704
2705 switch (SWITCH_ENUM_CAST (code))
2706 {
2707 case Sword:
2708 case Ssymbol:
2709 case Sescape:
2710 case Scharquote:
2711 if (depth || !sexpflag) break;
2712 /* This word counts as a sexp; count object finished
2713 after passing it. */
2714 while (from > stop)
2715 {
2716 temp_pos = from_byte;
2717 if (! NILP (BVAR (current_buffer, enable_multibyte_characters)))
2718 DEC_POS (temp_pos);
2719 else
2720 temp_pos--;
2721 UPDATE_SYNTAX_TABLE_BACKWARD (from - 1);
2722 c1 = FETCH_CHAR_AS_MULTIBYTE (temp_pos);
2723 temp_code = SYNTAX_WITH_MULTIBYTE_CHECK (c1);
2724 /* Don't allow comment-end to be quoted. */
2725 if (temp_code == Sendcomment)
2726 goto done2;
2727 quoted = char_quoted (from - 1, temp_pos);
2728 if (quoted)
2729 {
2730 DEC_BOTH (from, from_byte);
2731 temp_pos = dec_bytepos (temp_pos);
2732 UPDATE_SYNTAX_TABLE_BACKWARD (from - 1);
2733 }
2734 c1 = FETCH_CHAR_AS_MULTIBYTE (temp_pos);
2735 temp_code = SYNTAX_WITH_MULTIBYTE_CHECK (c1);
2736 if (! (quoted || temp_code == Sword
2737 || temp_code == Ssymbol
2738 || temp_code == Squote))
2739 goto done2;
2740 DEC_BOTH (from, from_byte);
2741 }
2742 goto done2;
2743
2744 case Smath:
2745 if (!sexpflag)
2746 break;
2747 temp_pos = dec_bytepos (from_byte);
2748 UPDATE_SYNTAX_TABLE_BACKWARD (from - 1);
2749 if (from != stop && c == FETCH_CHAR_AS_MULTIBYTE (temp_pos))
2750 DEC_BOTH (from, from_byte);
2751 if (mathexit)
2752 {
2753 mathexit = 0;
2754 goto open2;
2755 }
2756 mathexit = 1;
2757
2758 case Sclose:
2759 if (!++depth) goto done2;
2760 break;
2761
2762 case Sopen:
2763 open2:
2764 if (!--depth) goto done2;
2765 if (depth < min_depth)
2766 xsignal3 (Qscan_error,
2767 build_string ("Containing expression ends prematurely"),
2768 make_number (last_good), make_number (from));
2769 break;
2770
2771 case Sendcomment:
2772 if (!parse_sexp_ignore_comments)
2773 break;
2774 found = back_comment (from, from_byte, stop, comnested, comstyle,
2775 &out_charpos, &out_bytepos);
2776 /* FIXME: if found == -1, then it really wasn't a comment-end.
2777 For single-char Sendcomment, we can't do much about it apart
2778 from skipping the char.
2779 For 2-char endcomments, we could try again, taking both
2780 chars as separate entities, but it's a lot of trouble
2781 for very little gain, so we don't bother either. -sm */
2782 if (found != -1)
2783 from = out_charpos, from_byte = out_bytepos;
2784 break;
2785
2786 case Scomment_fence:
2787 case Sstring_fence:
2788 while (1)
2789 {
2790 if (from == stop)
2791 goto lose;
2792 DEC_BOTH (from, from_byte);
2793 UPDATE_SYNTAX_TABLE_BACKWARD (from);
2794 if (!char_quoted (from, from_byte)
2795 && (c = FETCH_CHAR_AS_MULTIBYTE (from_byte),
2796 SYNTAX_WITH_MULTIBYTE_CHECK (c) == code))
2797 break;
2798 }
2799 if (code == Sstring_fence && !depth && sexpflag) goto done2;
2800 break;
2801
2802 case Sstring:
2803 stringterm = FETCH_CHAR_AS_MULTIBYTE (from_byte);
2804 while (1)
2805 {
2806 if (from == stop)
2807 goto lose;
2808 DEC_BOTH (from, from_byte);
2809 UPDATE_SYNTAX_TABLE_BACKWARD (from);
2810 if (!char_quoted (from, from_byte)
2811 && (stringterm
2812 == (c = FETCH_CHAR_AS_MULTIBYTE (from_byte)))
2813 && SYNTAX_WITH_MULTIBYTE_CHECK (c) == Sstring)
2814 break;
2815 }
2816 if (!depth && sexpflag) goto done2;
2817 break;
2818 default:
2819 /* Ignore whitespace, punctuation, quote, endcomment. */
2820 break;
2821 }
2822 }
2823
2824 /* Reached start of buffer. Error if within object, return nil if between */
2825 if (depth)
2826 goto lose;
2827
2828 immediate_quit = 0;
2829 return Qnil;
2830
2831 done2:
2832 count++;
2833 }
2834
2835
2836 immediate_quit = 0;
2837 XSETFASTINT (val, from);
2838 return val;
2839
2840 lose:
2841 xsignal3 (Qscan_error,
2842 build_string ("Unbalanced parentheses"),
2843 make_number (last_good), make_number (from));
2844 }
2845
2846 DEFUN ("scan-lists", Fscan_lists, Sscan_lists, 3, 3, 0,
2847 doc: /* Scan from character number FROM by COUNT lists.
2848 Scan forward if COUNT is positive, backward if COUNT is negative.
2849 Return the character number of the position thus found.
2850
2851 A \"list", in this context, refers to a balanced parenthetical
2852 grouping, as determined by the syntax table.
2853
2854 If DEPTH is nonzero, treat that as the nesting depth of the starting
2855 point (i.e. the starting point is DEPTH parentheses deep). This
2856 function scans over parentheses until the depth goes to zero COUNT
2857 times. Hence, positive DEPTH moves out that number of levels of
2858 parentheses, while negative DEPTH moves to a deeper level.
2859
2860 Comments are ignored if `parse-sexp-ignore-comments' is non-nil.
2861
2862 If we reach the beginning or end of the accessible part of the buffer
2863 before we have scanned over COUNT lists, return nil if the depth at
2864 that point is zero, and signal a error if the depth is nonzero. */)
2865 (Lisp_Object from, Lisp_Object count, Lisp_Object depth)
2866 {
2867 CHECK_NUMBER (from);
2868 CHECK_NUMBER (count);
2869 CHECK_NUMBER (depth);
2870
2871 return scan_lists (XINT (from), XINT (count), XINT (depth), 0);
2872 }
2873
2874 DEFUN ("scan-sexps", Fscan_sexps, Sscan_sexps, 2, 2, 0,
2875 doc: /* Scan from character number FROM by COUNT balanced expressions.
2876 If COUNT is negative, scan backwards.
2877 Returns the character number of the position thus found.
2878
2879 Comments are ignored if `parse-sexp-ignore-comments' is non-nil.
2880
2881 If the beginning or end of (the accessible part of) the buffer is reached
2882 in the middle of a parenthetical grouping, an error is signaled.
2883 If the beginning or end is reached between groupings
2884 but before count is used up, nil is returned. */)
2885 (Lisp_Object from, Lisp_Object count)
2886 {
2887 CHECK_NUMBER (from);
2888 CHECK_NUMBER (count);
2889
2890 return scan_lists (XINT (from), XINT (count), 0, 1);
2891 }
2892
2893 DEFUN ("backward-prefix-chars", Fbackward_prefix_chars, Sbackward_prefix_chars,
2894 0, 0, 0,
2895 doc: /* Move point backward over any number of chars with prefix syntax.
2896 This includes chars with "quote" or "prefix" syntax (' or p). */)
2897 (void)
2898 {
2899 ptrdiff_t beg = BEGV;
2900 ptrdiff_t opoint = PT;
2901 ptrdiff_t opoint_byte = PT_BYTE;
2902 ptrdiff_t pos = PT;
2903 ptrdiff_t pos_byte = PT_BYTE;
2904 int c;
2905
2906 if (pos <= beg)
2907 {
2908 SET_PT_BOTH (opoint, opoint_byte);
2909
2910 return Qnil;
2911 }
2912
2913 SETUP_SYNTAX_TABLE (pos, -1);
2914
2915 DEC_BOTH (pos, pos_byte);
2916
2917 while (!char_quoted (pos, pos_byte)
2918 /* Previous statement updates syntax table. */
2919 && ((c = FETCH_CHAR_AS_MULTIBYTE (pos_byte), SYNTAX (c) == Squote)
2920 || SYNTAX_PREFIX (c)))
2921 {
2922 opoint = pos;
2923 opoint_byte = pos_byte;
2924
2925 if (pos + 1 > beg)
2926 DEC_BOTH (pos, pos_byte);
2927 }
2928
2929 SET_PT_BOTH (opoint, opoint_byte);
2930
2931 return Qnil;
2932 }
2933 \f
2934 /* Parse forward from FROM / FROM_BYTE to END,
2935 assuming that FROM has state OLDSTATE (nil means FROM is start of function),
2936 and return a description of the state of the parse at END.
2937 If STOPBEFORE is nonzero, stop at the start of an atom.
2938 If COMMENTSTOP is 1, stop at the start of a comment.
2939 If COMMENTSTOP is -1, stop at the start or end of a comment,
2940 after the beginning of a string, or after the end of a string. */
2941
2942 static void
2943 scan_sexps_forward (struct lisp_parse_state *stateptr,
2944 ptrdiff_t from, ptrdiff_t from_byte, ptrdiff_t end,
2945 EMACS_INT targetdepth, int stopbefore,
2946 Lisp_Object oldstate, int commentstop)
2947 {
2948 struct lisp_parse_state state;
2949
2950 register enum syntaxcode code;
2951 int c1;
2952 int comnested;
2953 struct level { ptrdiff_t last, prev; };
2954 struct level levelstart[100];
2955 register struct level *curlevel = levelstart;
2956 struct level *endlevel = levelstart + 100;
2957 register EMACS_INT depth; /* Paren depth of current scanning location.
2958 level - levelstart equals this except
2959 when the depth becomes negative. */
2960 EMACS_INT mindepth; /* Lowest DEPTH value seen. */
2961 int start_quoted = 0; /* Nonzero means starting after a char quote */
2962 Lisp_Object tem;
2963 ptrdiff_t prev_from; /* Keep one character before FROM. */
2964 ptrdiff_t prev_from_byte;
2965 int prev_from_syntax;
2966 int boundary_stop = commentstop == -1;
2967 int nofence;
2968 int found;
2969 ptrdiff_t out_bytepos, out_charpos;
2970 int temp;
2971
2972 prev_from = from;
2973 prev_from_byte = from_byte;
2974 if (from != BEGV)
2975 DEC_BOTH (prev_from, prev_from_byte);
2976
2977 /* Use this macro instead of `from++'. */
2978 #define INC_FROM \
2979 do { prev_from = from; \
2980 prev_from_byte = from_byte; \
2981 temp = FETCH_CHAR_AS_MULTIBYTE (prev_from_byte); \
2982 prev_from_syntax = SYNTAX_WITH_FLAGS (temp); \
2983 INC_BOTH (from, from_byte); \
2984 if (from < end) \
2985 UPDATE_SYNTAX_TABLE_FORWARD (from); \
2986 } while (0)
2987
2988 immediate_quit = 1;
2989 QUIT;
2990
2991 if (NILP (oldstate))
2992 {
2993 depth = 0;
2994 state.instring = -1;
2995 state.incomment = 0;
2996 state.comstyle = 0; /* comment style a by default. */
2997 state.comstr_start = -1; /* no comment/string seen. */
2998 }
2999 else
3000 {
3001 tem = Fcar (oldstate);
3002 if (!NILP (tem))
3003 depth = XINT (tem);
3004 else
3005 depth = 0;
3006
3007 oldstate = Fcdr (oldstate);
3008 oldstate = Fcdr (oldstate);
3009 oldstate = Fcdr (oldstate);
3010 tem = Fcar (oldstate);
3011 /* Check whether we are inside string_fence-style string: */
3012 state.instring = (!NILP (tem)
3013 ? (CHARACTERP (tem) ? XFASTINT (tem) : ST_STRING_STYLE)
3014 : -1);
3015
3016 oldstate = Fcdr (oldstate);
3017 tem = Fcar (oldstate);
3018 state.incomment = (!NILP (tem)
3019 ? (INTEGERP (tem) ? XINT (tem) : -1)
3020 : 0);
3021
3022 oldstate = Fcdr (oldstate);
3023 tem = Fcar (oldstate);
3024 start_quoted = !NILP (tem);
3025
3026 /* if the eighth element of the list is nil, we are in comment
3027 style a. If it is non-nil, we are in comment style b */
3028 oldstate = Fcdr (oldstate);
3029 oldstate = Fcdr (oldstate);
3030 tem = Fcar (oldstate);
3031 state.comstyle = (NILP (tem)
3032 ? 0
3033 : (RANGED_INTEGERP (0, tem, ST_COMMENT_STYLE)
3034 ? XINT (tem)
3035 : ST_COMMENT_STYLE));
3036
3037 oldstate = Fcdr (oldstate);
3038 tem = Fcar (oldstate);
3039 state.comstr_start =
3040 RANGED_INTEGERP (PTRDIFF_MIN, tem, PTRDIFF_MAX) ? XINT (tem) : -1;
3041 oldstate = Fcdr (oldstate);
3042 tem = Fcar (oldstate);
3043 while (!NILP (tem)) /* >= second enclosing sexps. */
3044 {
3045 Lisp_Object temhd = Fcar (tem);
3046 if (RANGED_INTEGERP (PTRDIFF_MIN, temhd, PTRDIFF_MAX))
3047 curlevel->last = XINT (temhd);
3048 if (++curlevel == endlevel)
3049 curlevel--; /* error ("Nesting too deep for parser"); */
3050 curlevel->prev = -1;
3051 curlevel->last = -1;
3052 tem = Fcdr (tem);
3053 }
3054 }
3055 state.quoted = 0;
3056 mindepth = depth;
3057
3058 curlevel->prev = -1;
3059 curlevel->last = -1;
3060
3061 SETUP_SYNTAX_TABLE (prev_from, 1);
3062 temp = FETCH_CHAR (prev_from_byte);
3063 prev_from_syntax = SYNTAX_WITH_FLAGS (temp);
3064 UPDATE_SYNTAX_TABLE_FORWARD (from);
3065
3066 /* Enter the loop at a place appropriate for initial state. */
3067
3068 if (state.incomment)
3069 goto startincomment;
3070 if (state.instring >= 0)
3071 {
3072 nofence = state.instring != ST_STRING_STYLE;
3073 if (start_quoted)
3074 goto startquotedinstring;
3075 goto startinstring;
3076 }
3077 else if (start_quoted)
3078 goto startquoted;
3079
3080 while (from < end)
3081 {
3082 int syntax;
3083 INC_FROM;
3084 code = prev_from_syntax & 0xff;
3085
3086 if (from < end
3087 && SYNTAX_FLAGS_COMSTART_FIRST (prev_from_syntax)
3088 && (c1 = FETCH_CHAR (from_byte),
3089 syntax = SYNTAX_WITH_FLAGS (c1),
3090 SYNTAX_FLAGS_COMSTART_SECOND (syntax)))
3091 /* Duplicate code to avoid a complex if-expression
3092 which causes trouble for the SGI compiler. */
3093 {
3094 /* Record the comment style we have entered so that only
3095 the comment-end sequence of the same style actually
3096 terminates the comment section. */
3097 state.comstyle
3098 = SYNTAX_FLAGS_COMMENT_STYLE (syntax, prev_from_syntax);
3099 comnested = SYNTAX_FLAGS_COMMENT_NESTED (prev_from_syntax);
3100 comnested = comnested || SYNTAX_FLAGS_COMMENT_NESTED (syntax);
3101 state.incomment = comnested ? 1 : -1;
3102 state.comstr_start = prev_from;
3103 INC_FROM;
3104 code = Scomment;
3105 }
3106 else if (code == Scomment_fence)
3107 {
3108 /* Record the comment style we have entered so that only
3109 the comment-end sequence of the same style actually
3110 terminates the comment section. */
3111 state.comstyle = ST_COMMENT_STYLE;
3112 state.incomment = -1;
3113 state.comstr_start = prev_from;
3114 code = Scomment;
3115 }
3116 else if (code == Scomment)
3117 {
3118 state.comstyle = SYNTAX_FLAGS_COMMENT_STYLE (prev_from_syntax, 0);
3119 state.incomment = (SYNTAX_FLAGS_COMMENT_NESTED (prev_from_syntax) ?
3120 1 : -1);
3121 state.comstr_start = prev_from;
3122 }
3123
3124 if (SYNTAX_FLAGS_PREFIX (prev_from_syntax))
3125 continue;
3126 switch (SWITCH_ENUM_CAST (code))
3127 {
3128 case Sescape:
3129 case Scharquote:
3130 if (stopbefore) goto stop; /* this arg means stop at sexp start */
3131 curlevel->last = prev_from;
3132 startquoted:
3133 if (from == end) goto endquoted;
3134 INC_FROM;
3135 goto symstarted;
3136 /* treat following character as a word constituent */
3137 case Sword:
3138 case Ssymbol:
3139 if (stopbefore) goto stop; /* this arg means stop at sexp start */
3140 curlevel->last = prev_from;
3141 symstarted:
3142 while (from < end)
3143 {
3144 /* Some compilers can't handle this inside the switch. */
3145 temp = FETCH_CHAR_AS_MULTIBYTE (from_byte);
3146 temp = SYNTAX (temp);
3147 switch (temp)
3148 {
3149 case Scharquote:
3150 case Sescape:
3151 INC_FROM;
3152 if (from == end) goto endquoted;
3153 break;
3154 case Sword:
3155 case Ssymbol:
3156 case Squote:
3157 break;
3158 default:
3159 goto symdone;
3160 }
3161 INC_FROM;
3162 }
3163 symdone:
3164 curlevel->prev = curlevel->last;
3165 break;
3166
3167 case Scomment_fence: /* Can't happen because it's handled above. */
3168 case Scomment:
3169 if (commentstop || boundary_stop) goto done;
3170 startincomment:
3171 /* The (from == BEGV) test was to enter the loop in the middle so
3172 that we find a 2-char comment ender even if we start in the
3173 middle of it. We don't want to do that if we're just at the
3174 beginning of the comment (think of (*) ... (*)). */
3175 found = forw_comment (from, from_byte, end,
3176 state.incomment, state.comstyle,
3177 (from == BEGV || from < state.comstr_start + 3)
3178 ? 0 : prev_from_syntax,
3179 &out_charpos, &out_bytepos, &state.incomment);
3180 from = out_charpos; from_byte = out_bytepos;
3181 /* Beware! prev_from and friends are invalid now.
3182 Luckily, the `done' doesn't use them and the INC_FROM
3183 sets them to a sane value without looking at them. */
3184 if (!found) goto done;
3185 INC_FROM;
3186 state.incomment = 0;
3187 state.comstyle = 0; /* reset the comment style */
3188 if (boundary_stop) goto done;
3189 break;
3190
3191 case Sopen:
3192 if (stopbefore) goto stop; /* this arg means stop at sexp start */
3193 depth++;
3194 /* curlevel++->last ran into compiler bug on Apollo */
3195 curlevel->last = prev_from;
3196 if (++curlevel == endlevel)
3197 curlevel--; /* error ("Nesting too deep for parser"); */
3198 curlevel->prev = -1;
3199 curlevel->last = -1;
3200 if (targetdepth == depth) goto done;
3201 break;
3202
3203 case Sclose:
3204 depth--;
3205 if (depth < mindepth)
3206 mindepth = depth;
3207 if (curlevel != levelstart)
3208 curlevel--;
3209 curlevel->prev = curlevel->last;
3210 if (targetdepth == depth) goto done;
3211 break;
3212
3213 case Sstring:
3214 case Sstring_fence:
3215 state.comstr_start = from - 1;
3216 if (stopbefore) goto stop; /* this arg means stop at sexp start */
3217 curlevel->last = prev_from;
3218 state.instring = (code == Sstring
3219 ? (FETCH_CHAR_AS_MULTIBYTE (prev_from_byte))
3220 : ST_STRING_STYLE);
3221 if (boundary_stop) goto done;
3222 startinstring:
3223 {
3224 nofence = state.instring != ST_STRING_STYLE;
3225
3226 while (1)
3227 {
3228 int c;
3229
3230 if (from >= end) goto done;
3231 c = FETCH_CHAR_AS_MULTIBYTE (from_byte);
3232 /* Some compilers can't handle this inside the switch. */
3233 temp = SYNTAX (c);
3234
3235 /* Check TEMP here so that if the char has
3236 a syntax-table property which says it is NOT
3237 a string character, it does not end the string. */
3238 if (nofence && c == state.instring && temp == Sstring)
3239 break;
3240
3241 switch (temp)
3242 {
3243 case Sstring_fence:
3244 if (!nofence) goto string_end;
3245 break;
3246 case Scharquote:
3247 case Sescape:
3248 INC_FROM;
3249 startquotedinstring:
3250 if (from >= end) goto endquoted;
3251 }
3252 INC_FROM;
3253 }
3254 }
3255 string_end:
3256 state.instring = -1;
3257 curlevel->prev = curlevel->last;
3258 INC_FROM;
3259 if (boundary_stop) goto done;
3260 break;
3261
3262 case Smath:
3263 /* FIXME: We should do something with it. */
3264 break;
3265 default:
3266 /* Ignore whitespace, punctuation, quote, endcomment. */
3267 break;
3268 }
3269 }
3270 goto done;
3271
3272 stop: /* Here if stopping before start of sexp. */
3273 from = prev_from; /* We have just fetched the char that starts it; */
3274 goto done; /* but return the position before it. */
3275
3276 endquoted:
3277 state.quoted = 1;
3278 done:
3279 state.depth = depth;
3280 state.mindepth = mindepth;
3281 state.thislevelstart = curlevel->prev;
3282 state.prevlevelstart
3283 = (curlevel == levelstart) ? -1 : (curlevel - 1)->last;
3284 state.location = from;
3285 state.levelstarts = Qnil;
3286 while (curlevel > levelstart)
3287 state.levelstarts = Fcons (make_number ((--curlevel)->last),
3288 state.levelstarts);
3289 immediate_quit = 0;
3290
3291 *stateptr = state;
3292 }
3293
3294 DEFUN ("parse-partial-sexp", Fparse_partial_sexp, Sparse_partial_sexp, 2, 6, 0,
3295 doc: /* Parse Lisp syntax starting at FROM until TO; return status of parse at TO.
3296 Parsing stops at TO or when certain criteria are met;
3297 point is set to where parsing stops.
3298 If fifth arg OLDSTATE is omitted or nil,
3299 parsing assumes that FROM is the beginning of a function.
3300 Value is a list of elements describing final state of parsing:
3301 0. depth in parens.
3302 1. character address of start of innermost containing list; nil if none.
3303 2. character address of start of last complete sexp terminated.
3304 3. non-nil if inside a string.
3305 (it is the character that will terminate the string,
3306 or t if the string should be terminated by a generic string delimiter.)
3307 4. nil if outside a comment, t if inside a non-nestable comment,
3308 else an integer (the current comment nesting).
3309 5. t if following a quote character.
3310 6. the minimum paren-depth encountered during this scan.
3311 7. style of comment, if any.
3312 8. character address of start of comment or string; nil if not in one.
3313 9. Intermediate data for continuation of parsing (subject to change).
3314 If third arg TARGETDEPTH is non-nil, parsing stops if the depth
3315 in parentheses becomes equal to TARGETDEPTH.
3316 Fourth arg STOPBEFORE non-nil means stop when come to
3317 any character that starts a sexp.
3318 Fifth arg OLDSTATE is a list like what this function returns.
3319 It is used to initialize the state of the parse. Elements number 1, 2, 6
3320 are ignored.
3321 Sixth arg COMMENTSTOP non-nil means stop at the start of a comment.
3322 If it is symbol `syntax-table', stop after the start of a comment or a
3323 string, or after end of a comment or a string. */)
3324 (Lisp_Object from, Lisp_Object to, Lisp_Object targetdepth, Lisp_Object stopbefore, Lisp_Object oldstate, Lisp_Object commentstop)
3325 {
3326 struct lisp_parse_state state;
3327 EMACS_INT target;
3328
3329 if (!NILP (targetdepth))
3330 {
3331 CHECK_NUMBER (targetdepth);
3332 target = XINT (targetdepth);
3333 }
3334 else
3335 target = TYPE_MINIMUM (EMACS_INT); /* We won't reach this depth */
3336
3337 validate_region (&from, &to);
3338 scan_sexps_forward (&state, XINT (from), CHAR_TO_BYTE (XINT (from)),
3339 XINT (to),
3340 target, !NILP (stopbefore), oldstate,
3341 (NILP (commentstop)
3342 ? 0 : (EQ (commentstop, Qsyntax_table) ? -1 : 1)));
3343
3344 SET_PT (state.location);
3345
3346 return Fcons (make_number (state.depth),
3347 Fcons (state.prevlevelstart < 0
3348 ? Qnil : make_number (state.prevlevelstart),
3349 Fcons (state.thislevelstart < 0
3350 ? Qnil : make_number (state.thislevelstart),
3351 Fcons (state.instring >= 0
3352 ? (state.instring == ST_STRING_STYLE
3353 ? Qt : make_number (state.instring)) : Qnil,
3354 Fcons (state.incomment < 0 ? Qt :
3355 (state.incomment == 0 ? Qnil :
3356 make_number (state.incomment)),
3357 Fcons (state.quoted ? Qt : Qnil,
3358 Fcons (make_number (state.mindepth),
3359 Fcons ((state.comstyle
3360 ? (state.comstyle == ST_COMMENT_STYLE
3361 ? Qsyntax_table
3362 : make_number (state.comstyle))
3363 : Qnil),
3364 Fcons (((state.incomment
3365 || (state.instring >= 0))
3366 ? make_number (state.comstr_start)
3367 : Qnil),
3368 Fcons (state.levelstarts, Qnil))))))))));
3369 }
3370 \f
3371 void
3372 init_syntax_once (void)
3373 {
3374 register int i, c;
3375 Lisp_Object temp;
3376
3377 /* This has to be done here, before we call Fmake_char_table. */
3378 DEFSYM (Qsyntax_table, "syntax-table");
3379
3380 /* Intern_C_String this now in case it isn't already done.
3381 Setting this variable twice is harmless.
3382 But don't staticpro it here--that is done in alloc.c. */
3383 Qchar_table_extra_slots = intern_c_string ("char-table-extra-slots");
3384
3385 /* Create objects which can be shared among syntax tables. */
3386 Vsyntax_code_object = Fmake_vector (make_number (Smax), Qnil);
3387 for (i = 0; i < ASIZE (Vsyntax_code_object); i++)
3388 ASET (Vsyntax_code_object, i, Fcons (make_number (i), Qnil));
3389
3390 /* Now we are ready to set up this property, so we can
3391 create syntax tables. */
3392 Fput (Qsyntax_table, Qchar_table_extra_slots, make_number (0));
3393
3394 temp = AREF (Vsyntax_code_object, (int) Swhitespace);
3395
3396 Vstandard_syntax_table = Fmake_char_table (Qsyntax_table, temp);
3397
3398 /* Control characters should not be whitespace. */
3399 temp = AREF (Vsyntax_code_object, (int) Spunct);
3400 for (i = 0; i <= ' ' - 1; i++)
3401 SET_RAW_SYNTAX_ENTRY (Vstandard_syntax_table, i, temp);
3402 SET_RAW_SYNTAX_ENTRY (Vstandard_syntax_table, 0177, temp);
3403
3404 /* Except that a few really are whitespace. */
3405 temp = AREF (Vsyntax_code_object, (int) Swhitespace);
3406 SET_RAW_SYNTAX_ENTRY (Vstandard_syntax_table, ' ', temp);
3407 SET_RAW_SYNTAX_ENTRY (Vstandard_syntax_table, '\t', temp);
3408 SET_RAW_SYNTAX_ENTRY (Vstandard_syntax_table, '\n', temp);
3409 SET_RAW_SYNTAX_ENTRY (Vstandard_syntax_table, 015, temp);
3410 SET_RAW_SYNTAX_ENTRY (Vstandard_syntax_table, 014, temp);
3411
3412 temp = AREF (Vsyntax_code_object, (int) Sword);
3413 for (i = 'a'; i <= 'z'; i++)
3414 SET_RAW_SYNTAX_ENTRY (Vstandard_syntax_table, i, temp);
3415 for (i = 'A'; i <= 'Z'; i++)
3416 SET_RAW_SYNTAX_ENTRY (Vstandard_syntax_table, i, temp);
3417 for (i = '0'; i <= '9'; i++)
3418 SET_RAW_SYNTAX_ENTRY (Vstandard_syntax_table, i, temp);
3419
3420 SET_RAW_SYNTAX_ENTRY (Vstandard_syntax_table, '$', temp);
3421 SET_RAW_SYNTAX_ENTRY (Vstandard_syntax_table, '%', temp);
3422
3423 SET_RAW_SYNTAX_ENTRY (Vstandard_syntax_table, '(',
3424 Fcons (make_number (Sopen), make_number (')')));
3425 SET_RAW_SYNTAX_ENTRY (Vstandard_syntax_table, ')',
3426 Fcons (make_number (Sclose), make_number ('(')));
3427 SET_RAW_SYNTAX_ENTRY (Vstandard_syntax_table, '[',
3428 Fcons (make_number (Sopen), make_number (']')));
3429 SET_RAW_SYNTAX_ENTRY (Vstandard_syntax_table, ']',
3430 Fcons (make_number (Sclose), make_number ('[')));
3431 SET_RAW_SYNTAX_ENTRY (Vstandard_syntax_table, '{',
3432 Fcons (make_number (Sopen), make_number ('}')));
3433 SET_RAW_SYNTAX_ENTRY (Vstandard_syntax_table, '}',
3434 Fcons (make_number (Sclose), make_number ('{')));
3435 SET_RAW_SYNTAX_ENTRY (Vstandard_syntax_table, '"',
3436 Fcons (make_number ((int) Sstring), Qnil));
3437 SET_RAW_SYNTAX_ENTRY (Vstandard_syntax_table, '\\',
3438 Fcons (make_number ((int) Sescape), Qnil));
3439
3440 temp = AREF (Vsyntax_code_object, (int) Ssymbol);
3441 for (i = 0; i < 10; i++)
3442 {
3443 c = "_-+*/&|<>="[i];
3444 SET_RAW_SYNTAX_ENTRY (Vstandard_syntax_table, c, temp);
3445 }
3446
3447 temp = AREF (Vsyntax_code_object, (int) Spunct);
3448 for (i = 0; i < 12; i++)
3449 {
3450 c = ".,;:?!#@~^'`"[i];
3451 SET_RAW_SYNTAX_ENTRY (Vstandard_syntax_table, c, temp);
3452 }
3453
3454 /* All multibyte characters have syntax `word' by default. */
3455 temp = AREF (Vsyntax_code_object, (int) Sword);
3456 char_table_set_range (Vstandard_syntax_table, 0x80, MAX_CHAR, temp);
3457 }
3458
3459 void
3460 syms_of_syntax (void)
3461 {
3462 DEFSYM (Qsyntax_table_p, "syntax-table-p");
3463
3464 staticpro (&Vsyntax_code_object);
3465
3466 staticpro (&gl_state.object);
3467 staticpro (&gl_state.global_code);
3468 staticpro (&gl_state.current_syntax_table);
3469 staticpro (&gl_state.old_prop);
3470
3471 /* Defined in regex.c */
3472 staticpro (&re_match_object);
3473
3474 DEFSYM (Qscan_error, "scan-error");
3475 Fput (Qscan_error, Qerror_conditions,
3476 listn (CONSTYPE_PURE, 2, Qscan_error, Qerror));
3477 Fput (Qscan_error, Qerror_message,
3478 build_pure_c_string ("Scan error"));
3479
3480 DEFVAR_BOOL ("parse-sexp-ignore-comments", parse_sexp_ignore_comments,
3481 doc: /* Non-nil means `forward-sexp', etc., should treat comments as whitespace. */);
3482
3483 DEFVAR_BOOL ("parse-sexp-lookup-properties", parse_sexp_lookup_properties,
3484 doc: /* Non-nil means `forward-sexp', etc., obey `syntax-table' property.
3485 Otherwise, that text property is simply ignored.
3486 See the info node `(elisp)Syntax Properties' for a description of the
3487 `syntax-table' property. */);
3488
3489 words_include_escapes = 0;
3490 DEFVAR_BOOL ("words-include-escapes", words_include_escapes,
3491 doc: /* Non-nil means `forward-word', etc., should treat escape chars part of words. */);
3492
3493 DEFVAR_BOOL ("multibyte-syntax-as-symbol", multibyte_syntax_as_symbol,
3494 doc: /* Non-nil means `scan-sexps' treats all multibyte characters as symbol. */);
3495 multibyte_syntax_as_symbol = 0;
3496
3497 DEFVAR_BOOL ("open-paren-in-column-0-is-defun-start",
3498 open_paren_in_column_0_is_defun_start,
3499 doc: /* Non-nil means an open paren in column 0 denotes the start of a defun. */);
3500 open_paren_in_column_0_is_defun_start = 1;
3501
3502
3503 DEFVAR_LISP ("find-word-boundary-function-table",
3504 Vfind_word_boundary_function_table,
3505 doc: /*
3506 Char table of functions to search for the word boundary.
3507 Each function is called with two arguments; POS and LIMIT.
3508 POS and LIMIT are character positions in the current buffer.
3509
3510 If POS is less than LIMIT, POS is at the first character of a word,
3511 and the return value of a function is a position after the last
3512 character of that word.
3513
3514 If POS is not less than LIMIT, POS is at the last character of a word,
3515 and the return value of a function is a position at the first
3516 character of that word.
3517
3518 In both cases, LIMIT bounds the search. */);
3519 Vfind_word_boundary_function_table = Fmake_char_table (Qnil, Qnil);
3520
3521 defsubr (&Ssyntax_table_p);
3522 defsubr (&Ssyntax_table);
3523 defsubr (&Sstandard_syntax_table);
3524 defsubr (&Scopy_syntax_table);
3525 defsubr (&Sset_syntax_table);
3526 defsubr (&Schar_syntax);
3527 defsubr (&Smatching_paren);
3528 defsubr (&Sstring_to_syntax);
3529 defsubr (&Smodify_syntax_entry);
3530 defsubr (&Sinternal_describe_syntax_value);
3531
3532 defsubr (&Sforward_word);
3533
3534 defsubr (&Sskip_chars_forward);
3535 defsubr (&Sskip_chars_backward);
3536 defsubr (&Sskip_syntax_forward);
3537 defsubr (&Sskip_syntax_backward);
3538
3539 defsubr (&Sforward_comment);
3540 defsubr (&Sscan_lists);
3541 defsubr (&Sscan_sexps);
3542 defsubr (&Sbackward_prefix_chars);
3543 defsubr (&Sparse_partial_sexp);
3544 }