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