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