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