annotate src/syntax.c @ 20:859a2309aef8 r19-15b93

Import from CVS: tag r19-15b93
author cvs
date Mon, 13 Aug 2007 08:50:05 +0200
parents 0293115a14e9
children 131b0175ea99
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* XEmacs routines to deal with syntax tables; also word and list parsing.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 Copyright (C) 1985-1994 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 Copyright (C) 1995 Sun Microsystems, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 under the terms of the GNU General Public License as published by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 Free Software Foundation; either version 2, or (at your option) any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 XEmacs is distributed in the hope that it will be useful, but WITHOUT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 along with XEmacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 /* Synched up with: FSF 19.28. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 #include <config.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 #include "lisp.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 #include "buffer.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 #include "commands.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 #include "insdel.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 #include "syntax.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 Lisp_Object Qsyntax_table_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 int words_include_escapes;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 int parse_sexp_ignore_comments;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 /* The following two variables are provided to tell additional information
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 to the regex routines. We do it this way rather than change the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 arguments to re_search_2() in an attempt to maintain some call
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 compatibility with other versions of the regex code. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 /* Tell the regex routines not to QUIT. Normally there is a QUIT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 each iteration in re_search_2(). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 int no_quit_in_re_search;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 /* Tell the regex routines which buffer to access for SYNTAX() lookups
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 and the like. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 struct buffer *regex_emacs_buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 Lisp_Object Vstandard_syntax_table;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 Lisp_Object Vsyntax_designator_chars_string;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 /* This is the internal form of the parse state used in parse-partial-sexp. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 struct lisp_parse_state
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
58 {
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
59 int depth; /* Depth at end of parsing */
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
60 Emchar instring; /* -1 if not within string, else desired terminator */
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
61 int incomment; /* Nonzero if within a comment at end of parsing */
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
62 int comstyle; /* comment style a=0, or b=1 */
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
63 int quoted; /* Nonzero if just after an escape char at end of
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 parsing */
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
65 Bufpos thislevelstart;/* Char number of most recent start-of-expression
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
66 at current level */
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
67 Bufpos prevlevelstart;/* Char number of start of containing expression */
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
68 Bufpos location; /* Char number at which parsing stopped */
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
69 int mindepth; /* Minimum depth seen while scanning */
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
70 Bufpos comstart; /* Position just after last comment starter */
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
71 };
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 /* These variables are a cache for finding the start of a defun.
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
74 find_start_pos is the place for which the defun start was found.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
75 find_start_value is the defun start position found for it.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 find_start_buffer is the buffer it was found in.
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
77 find_start_begv is the BEGV value when it was found.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 find_start_modiff is the value of MODIFF when it was found. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 static Bufpos find_start_pos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 static Bufpos find_start_value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 static struct buffer *find_start_buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 static Bufpos find_start_begv;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 static int find_start_modiff;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 /* Find a defun-start that is the last one before POS (or nearly the last).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 We record what we find, so that another call in the same area
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 can return the same value right away. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 static Bufpos
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 find_defun_start (struct buffer *buf, Bufpos pos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 Bufpos tem;
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
94 Lisp_Object syntaxtab = buf->syntax_table;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 /* Use previous finding, if it's valid and applies to this inquiry. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 if (buf == find_start_buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 /* Reuse the defun-start even if POS is a little farther on.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 POS might be in the next defun, but that's ok.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 Our value may not be the best possible, but will still be usable. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 && pos <= find_start_pos + 1000
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 && pos >= find_start_value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 && BUF_BEGV (buf) == find_start_begv
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 && BUF_MODIFF (buf) == find_start_modiff)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 return find_start_value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 /* Back up to start of line. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 tem = find_next_newline (buf, pos, -1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 while (tem > BUF_BEGV (buf))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 /* Open-paren at start of line means we found our defun-start. */
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
113 if (SYNTAX (syntaxtab, BUF_FETCH_CHAR (buf, tem)) == Sopen)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 /* Move to beg of previous line. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 tem = find_next_newline (buf, tem, -2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 /* Record what we found, for the next try. */
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
120 find_start_value = tem;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 find_start_buffer = buf;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 find_start_modiff = BUF_MODIFF (buf);
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
123 find_start_begv = BUF_BEGV (buf);
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
124 find_start_pos = pos;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 return find_start_value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
129 DEFUN ("syntax-table-p", Fsyntax_table_p, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 Return t if ARG is a syntax table.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 Any vector of 256 elements will do.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
132 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
133 (obj))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 if (VECTORP (obj) && vector_length (XVECTOR (obj)) == 0400)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 return Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 check_syntax_table (Lisp_Object obj, Lisp_Object def)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 if (NILP (obj))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 obj = def;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 while (NILP (Fsyntax_table_p (obj)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 obj = wrong_type_argument (Qsyntax_table_p, obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 return (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
150 DEFUN ("syntax-table", Fsyntax_table, 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 Return the current syntax table.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 This is the one specified by the current buffer, or by BUFFER if it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 is non-nil.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
154 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
155 (buffer))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 return decode_buffer (buffer, 0)->syntax_table;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
160 DEFUN ("standard-syntax-table", Fstandard_syntax_table, 0, 0, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 Return the standard syntax table.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 This is the one used for new buffers.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
163 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
164 ())
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 return Vstandard_syntax_table;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
169 DEFUN ("copy-syntax-table", Fcopy_syntax_table, 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 Construct a new syntax table and return it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 It is a copy of the TABLE, which defaults to the standard syntax table.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
172 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
173 (table))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 if (NILP (Vstandard_syntax_table))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 /* Can only be null during initialization */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 return make_vector (0400, Qzero);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 table = check_syntax_table (table, Vstandard_syntax_table);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 return Fcopy_sequence (table);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
183 DEFUN ("set-syntax-table", Fset_syntax_table, 1, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 Select a new syntax table for BUFFER.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 One argument, a syntax table.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 BUFFER defaults to the current buffer if omitted.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
187 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
188 (table, buffer))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 struct buffer *buf = decode_buffer (buffer, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 table = check_syntax_table (table, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 buf->syntax_table = table;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 /* Indicate that this buffer now has a specified syntax table. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 buf->local_var_flags |= XINT (buffer_local_flags.syntax_table);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 return table;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 /* Convert a letter which signifies a syntax code
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
199 into the code it signifies.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
200 This is used by modify-syntax-entry, and other things. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 CONST unsigned char syntax_spec_code[0400] =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 { 0377, 0377, 0377, 0377, 0377, 0377, 0377, 0377,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 0377, 0377, 0377, 0377, 0377, 0377, 0377, 0377,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 0377, 0377, 0377, 0377, 0377, 0377, 0377, 0377,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 0377, 0377, 0377, 0377, 0377, 0377, 0377, 0377,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 (char) Swhitespace, 0377, (char) Sstring, 0377,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 (char) Smath, 0377, 0377, (char) Squote,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 (char) Sopen, (char) Sclose, 0377, 0377,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 0377, (char) Swhitespace, (char) Spunct, (char) Scharquote,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 0377, 0377, 0377, 0377, 0377, 0377, 0377, 0377,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 0377, 0377, 0377, 0377,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 (char) Scomment, 0377, (char) Sendcomment, 0377,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 (char) Sinherit, 0377, 0377, 0377, 0377, 0377, 0377, 0377, /* @, A ... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 0377, 0377, 0377, 0377, 0377, 0377, 0377, 0377,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 0377, 0377, 0377, 0377, 0377, 0377, 0377, (char) Sword,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 0377, 0377, 0377, 0377, (char) Sescape, 0377, 0377, (char) Ssymbol,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 0377, 0377, 0377, 0377, 0377, Sextword, 0377, 0377, /* `, a, ... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 0377, 0377, 0377, 0377, 0377, 0377, 0377, 0377,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 0377, 0377, 0377, 0377, 0377, 0377, 0377, (char) Sword,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 0377, 0377, 0377, 0377, 0377, 0377, 0377, 0377
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 CONST unsigned char syntax_code_spec[] =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 ' ', '.', 'w', '_', '(', ')', '\'', '\"', '$', '\\', '/', '<', '>', '@',
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 'e', '\0'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
230 DEFUN ("syntax-designator-chars", Fsyntax_designator_chars, 0, 0, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 Return a string of the recognized syntax designator chars.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 The chars are ordered by their internal syntax codes, which are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 numbered starting at 0.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
234 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
235 ())
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 return Vsyntax_designator_chars_string;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
240 DEFUN ("char-syntax", Fchar_syntax, 1, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 Return the syntax code of CHAR, described by a character.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 For example, if CHAR is a word constituent, the character `?w' is returned.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 The characters that correspond to various syntax codes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 are listed in the documentation of `modify-syntax-entry'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 Optional second argument TABLE defaults to the current buffer's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 syntax table.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
247 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
248 (ch, table))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 CHECK_CHAR_COERCE_INT (ch);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 table = check_syntax_table (table, current_buffer->syntax_table);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 return make_int (syntax_code_spec[(int) SYNTAX (table, XINT (ch))]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 syntax_match (Lisp_Object table, Emchar ch)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 unsigned char stringterm = ((SYNTAX_CODE (table, ch) >> 8) & 0377);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 if (stringterm == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 return make_char (stringterm);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
268 DEFUN ("matching-paren", Fmatching_paren, 1, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 Return the matching parenthesis of CHAR, or nil if none.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 Optional second argument TABLE defaults to the current buffer's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 syntax table.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
272 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
273 (ch, table))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 int code;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 CHECK_CHAR_COERCE_INT (ch);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 table = check_syntax_table (table, current_buffer->syntax_table);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 code = SYNTAX (table, XCHAR (ch));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 if (code == Sopen || code == Sclose || code == Sstring)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 return syntax_match (table, XCHAR (ch));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 /* Return the position across COUNT words from FROM.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 If that many words cannot be found before the end of the buffer, return 0.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 COUNT negative means scan backward and stop at word beginning. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 Bufpos
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 scan_words (struct buffer *buf, Bufpos from, int count)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 Bufpos beg = BUF_BEGV (buf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 Bufpos end = BUF_ZV (buf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 enum syntaxcode code;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 Lisp_Object table = buf->syntax_table;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 while (count > 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 while (1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 Emchar ch;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 if (from == end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 ch = BUF_FETCH_CHAR (buf, from);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 code = SYNTAX_UNSAFE (table, ch);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 if (words_include_escapes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 && (code == Sescape || code == Scharquote))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 if (code == Sword || code == Sextword)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 from++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 while (1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 Emchar ch;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 if (from == end) break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 ch = BUF_FETCH_CHAR (buf, from);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 code = SYNTAX_UNSAFE (table, ch);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 if (!(words_include_escapes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 && (code == Sescape || code == Scharquote)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 if (code != Sword && code != Sextword)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 from++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 count--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 while (count < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 while (1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 Emchar ch;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 if (from == beg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 ch = BUF_FETCH_CHAR (buf, from - 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 code = SYNTAX_UNSAFE (table, ch);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 if (words_include_escapes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 && (code == Sescape || code == Scharquote))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 if (code == Sword || code == Sextword)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 from--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 while (1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 Emchar ch;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 if (from == beg) break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 ch = BUF_FETCH_CHAR (buf, from - 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 code = SYNTAX_UNSAFE (table, ch);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 if (!(words_include_escapes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 && (code == Sescape || code == Scharquote)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 if (code != Sword && code != Sextword)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 from--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 count++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 return from;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
377 DEFUN ("forward-word", Fforward_word, 1, 2, "_p", /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 Move point forward ARG words (backward if ARG is negative).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 Normally returns t.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 If an edge of the buffer is reached, point is left there
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 and nil is returned.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
382 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
383 (count, buffer))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 Bufpos val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 struct buffer *buf = decode_buffer (buffer, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 CHECK_INT (count);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 if (!(val = scan_words (buf, BUF_PT (buf), XINT (count))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 BUF_SET_PT (buf, XINT (count) > 0 ? BUF_ZV (buf) : BUF_BEGV (buf));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 BUF_SET_PT (buf, val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 return Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 static void scan_sexps_forward (struct buffer *buf,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 struct lisp_parse_state *,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 Bufpos from, Bufpos end,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 int targetdepth, int stopbefore,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 Lisp_Object oldstate,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 int commentstop);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 find_start_of_comment (struct buffer *buf, Bufpos from, Bufpos stop, int mask)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 Emchar c;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409 enum syntaxcode code;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 Lisp_Object table = buf->syntax_table;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 /* Look back, counting the parity of string-quotes,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 and recording the comment-starters seen.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 When we reach a safe place, assume that's not in a string;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 then step the main scan to the earliest comment-starter seen
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 an even number of string quotes away from the safe place.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 OFROM[I] is position of the earliest comment-starter seen
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 which is I+2X quotes from the comment-end.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 PARITY is current parity of quotes from the comment end. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 int parity = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422 Emchar my_stringend = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 int string_lossage = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 Bufpos comment_end = from;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 Bufpos comstart_pos = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 int comstart_parity = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 int styles_match_p = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 /* At beginning of range to scan, we're outside of strings;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 that determines quote parity to the comment-end. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 while (from != stop)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433 /* Move back and examine a character. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434 from--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 c = BUF_FETCH_CHAR (buf, from);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 code = SYNTAX_UNSAFE (table, c);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 /* is this a 1-char comment end sequence? if so, try
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 to see if style matches previously extracted mask */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 if (code == Sendcomment)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 styles_match_p = SYNTAX_STYLES_MATCH_1CHAR_P (table, c, mask);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 /* otherwise, is this a 2-char comment end sequence? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 else if (from >= stop
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 && SYNTAX_END_P (table, c, BUF_FETCH_CHAR (buf, from+1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450 code = Sendcomment;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 styles_match_p =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452 SYNTAX_STYLES_MATCH_END_P (table, c,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453 BUF_FETCH_CHAR (buf, from+1),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 mask);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 /* or are we looking at a 1-char comment start sequence
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 of the style matching mask? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459 else if (code == Scomment
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460 && SYNTAX_STYLES_MATCH_1CHAR_P (table, c, mask))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 styles_match_p = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465 /* or possibly, a 2-char comment start sequence */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 else if (from >= stop
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467 && SYNTAX_STYLES_MATCH_START_P (table, c,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 BUF_FETCH_CHAR (buf, from+1),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469 mask))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471 code = Scomment;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472 styles_match_p = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475 /* Ignore escaped characters. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 if (char_quoted (buf, from))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479 /* Track parity of quotes. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480 if (code == Sstring)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482 parity ^= 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 if (my_stringend == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484 my_stringend = c;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 /* If we have two kinds of string delimiters.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486 There's no way to grok this scanning backwards. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487 else if (my_stringend != c)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488 string_lossage = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491 /* Record comment-starters according to that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 quote-parity to the comment-end. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493 if (code == Scomment && styles_match_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495 comstart_parity = parity;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496 comstart_pos = from;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499 /* If we find another earlier comment-ender,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500 any comment-starts earlier than that don't count
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501 (because they go with the earlier comment-ender). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502 if (code == Sendcomment && styles_match_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505 /* Assume a defun-start point is outside of strings. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506 if (code == Sopen
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507 && (from == stop || BUF_FETCH_CHAR (buf, from - 1) == '\n'))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511 if (comstart_pos == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512 from = comment_end;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513 /* If the earliest comment starter
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 is followed by uniform paired string quotes or none,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 we know it can't be inside a string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516 since if it were then the comment ender would be inside one.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 So it does start a comment. Skip back to it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 else if (comstart_parity == 0 && !string_lossage)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519 from = comstart_pos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522 /* We had two kinds of string delimiters mixed up
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523 together. Decode this going forwards.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524 Scan fwd from the previous comment ender
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 to the one in question; this records where we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 last passed a comment starter. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528 struct lisp_parse_state state;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 scan_sexps_forward (buf, &state, find_defun_start (buf, comment_end),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 comment_end - 1, -10000, 0, Qnil, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 if (state.incomment)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532 from = state.comstart;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 /* We can't grok this as a comment; scan it normally. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 from = comment_end;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 return from;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540 static Bufpos
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541 find_end_of_comment (struct buffer *buf, Bufpos from, Bufpos stop, int mask)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543 int c;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544 Lisp_Object table = buf->syntax_table;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546 while (1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548 if (from == stop)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550 return -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552 c = BUF_FETCH_CHAR (buf, from);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 if (SYNTAX_UNSAFE (table, c) == Sendcomment
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554 && SYNTAX_STYLES_MATCH_1CHAR_P (table, c, mask))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555 /* we have encountered a comment end of the same style
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556 as the comment sequence which began this comment
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557 section */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560 from++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561 if (from < stop
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 && SYNTAX_STYLES_MATCH_END_P (table, c,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563 BUF_FETCH_CHAR (buf, from), mask))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564 /* we have encountered a comment end of the same style
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565 as the comment sequence which began this comment
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566 section */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567 { from++; break; }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569 return from;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573 /* #### between FSF 19.23 and 19.28 there are some changes to the logic
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574 in this function (and minor changes to find_start_of_comment(),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575 above, which is part of Fforward_comment() in FSF). Attempts to port
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576 that logic made this function break, so I'm leaving it out. If anyone
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 ever complains about this function not working properly, take a look
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578 at those changes. --ben */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
580 DEFUN ("forward-comment", Fforward_comment, 1, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581 Move forward across up to N comments. If N is negative, move backward.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582 Stop scanning if we find something other than a comment or whitespace.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 Set point to where scanning stops.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584 If N comments are found as expected, with nothing except whitespace
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585 between them, return t; otherwise return nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586 Point is set in either case.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587 Optional argument BUFFER defaults to the current buffer.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
588 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
589 (n, buffer))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591 Bufpos from;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592 Bufpos stop;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593 Emchar c;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594 enum syntaxcode code;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595 int count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596 struct buffer *buf = decode_buffer (buffer, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597 Lisp_Object table = buf->syntax_table;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599 CHECK_INT (n);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600 count = XINT (n);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
601
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602 from = BUF_PT (buf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
604 while (count > 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
605 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
607
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608 stop = BUF_ZV (buf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609 while (from < stop)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611 int mask = 0; /* mask for finding matching comment style */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613 if (char_quoted (buf, from))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615 from++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619 c = BUF_FETCH_CHAR (buf, from);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620 code = SYNTAX (table, c);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
622 if (code == Scomment)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624 /* we have encountered a single character comment start
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
625 sequence, and we are ignoring all text inside comments.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626 we must record the comment style this character begins
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627 so that later, only a comment end of the same style actually
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 ends the comment section */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629 mask = SYNTAX_COMMENT_1CHAR_MASK (table, c);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632 else if (from < stop
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633 && SYNTAX_START_P (table, c, BUF_FETCH_CHAR (buf, from+1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635 /* we have encountered a 2char comment start sequence and we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636 are ignoring all text inside comments. we must record
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637 the comment style this sequence begins so that later,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638 only a comment end of the same style actually ends
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639 the comment section */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640 code = Scomment;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641 mask = SYNTAX_COMMENT_MASK_START (table, c,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
642 BUF_FETCH_CHAR (buf, from+1));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
643 from++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
644 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646 if (code == Scomment)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
648 Bufpos newfrom;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650 newfrom = find_end_of_comment (buf, from, stop, mask);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651 if (newfrom < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
652 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
653 /* we stopped because from==stop */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
654 BUF_SET_PT (buf, stop);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
655 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
656 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657 from = newfrom;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659 /* We have skipped one comment. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662 else if (code != Swhitespace
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663 && code != Sendcomment
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664 && code != Scomment )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666 BUF_SET_PT (buf, from);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669 from++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672 /* End of comment reached */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
673 count--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676 while (count < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680 stop = BUF_BEGV (buf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
681 while (from > stop)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
682 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
683 int mask = 0; /* mask for finding matching comment style */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
684
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685 from--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
686 if (char_quoted (buf, from))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
687 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688 from--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692 c = BUF_FETCH_CHAR (buf, from);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693 code = SYNTAX (table, c);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695 if (code == Sendcomment)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
696 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
697 /* we have found a single char end comment. we must record
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
698 the comment style encountered so that later, we can match
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
699 only the proper comment begin sequence of the same style */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
700 mask = SYNTAX_COMMENT_1CHAR_MASK (table, c);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703 else if (from > stop
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
704 && SYNTAX_END_P (table, BUF_FETCH_CHAR (buf, from - 1), c)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
705 && !char_quoted (buf, from - 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
706 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707 /* We must record the comment style encountered so that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
708 later, we can match only the proper comment begin
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709 sequence of the same style. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710 code = Sendcomment;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711 mask = SYNTAX_COMMENT_MASK_END (table,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712 BUF_FETCH_CHAR (buf, from - 1),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713 c);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
714 from--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717 if (code == Sendcomment)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719 from = find_start_of_comment (buf, from, stop, mask);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
722
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723 else if (code != Swhitespace
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724 && SYNTAX (table, c) != Scomment
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725 && SYNTAX (table, c) != Sendcomment)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
726 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
727 BUF_SET_PT (buf, from + 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
731
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732 count++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
733 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
735 BUF_SET_PT (buf, from);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736 return Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
738
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
739
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741 scan_lists (struct buffer *buf, Bufpos from, int count, int depth,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742 int sexpflag, int no_error)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
743 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744 Bufpos stop;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
745 Emchar c;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
746 int quoted;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
747 int mathexit = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
748 enum syntaxcode code;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
749 int min_depth = depth; /* Err out if depth gets less than this. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
750 Lisp_Object table = buf->syntax_table;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
751
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
752 if (depth > 0) min_depth = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
753
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
754 while (count > 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
755 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
756 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
757
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
758 stop = BUF_ZV (buf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
759 while (from < stop)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
760 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
761 int mask = 0; /* mask for finding matching comment style */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763 c = BUF_FETCH_CHAR (buf, from);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
764 code = SYNTAX_UNSAFE (table, c);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765 from++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
767 /* a 1-char comment start sequence */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
768 if (code == Scomment && parse_sexp_ignore_comments)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
769 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770 mask = SYNTAX_COMMENT_1CHAR_MASK (table, c);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
772
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
773 /* else, a 2-char comment start sequence? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
774 else if (from < stop
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
775 && SYNTAX_START_P (table, c, BUF_FETCH_CHAR (buf, from))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
776 && parse_sexp_ignore_comments)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
777 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
778 /* we have encountered a comment start sequence and we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
779 are ignoring all text inside comments. we must record
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
780 the comment style this sequence begins so that later,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
781 only a comment end of the same style actually ends
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
782 the comment section */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783 code = Scomment;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
784 mask = SYNTAX_COMMENT_MASK_START (table, c,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
785 BUF_FETCH_CHAR (buf, from));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
786 from++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
787 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
788
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
789 if (SYNTAX_PREFIX_UNSAFE (table, c))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
790 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
791
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
792 switch (code)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
793 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
794 case Sescape:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
795 case Scharquote:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
796 if (from == stop) goto lose;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
797 from++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
798 /* treat following character as a word constituent */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
799 case Sword:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
800 case Sextword:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
801 case Ssymbol:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
802 if (depth || !sexpflag) break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
803 /* This word counts as a sexp; return at end of it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
804 while (from < stop)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
805 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
806 switch (SYNTAX (table, BUF_FETCH_CHAR (buf, from)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
807 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
808 case Scharquote:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
809 case Sescape:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
810 from++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
811 if (from == stop) goto lose;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
812 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
813 case Sword:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
814 case Sextword:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
815 case Ssymbol:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
816 case Squote:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
817 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
818 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
819 goto done;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
820 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
821 from++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
822 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
823 goto done;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
824
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
825 case Scomment:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
826 if (!parse_sexp_ignore_comments)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
827 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
828 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
829 Bufpos newfrom = find_end_of_comment (buf, from, stop, mask);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
830 if (newfrom < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
831 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
832 /* we stopped because from == stop in search forward */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
833 from = stop;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
834 if (depth == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
835 goto done;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
836 goto lose;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
837 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
838 from = newfrom;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
839 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
840 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
841
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
842 case Smath:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
843 if (!sexpflag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
844 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
845 if (from != stop && c == BUF_FETCH_CHAR (buf, from))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
846 from++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
847 if (mathexit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
848 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
849 mathexit = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
850 goto close1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
851 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
852 mathexit = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
853
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
854 case Sopen:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
855 if (!++depth) goto done;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
856 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
857
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
858 case Sclose:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
859 close1:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
860 if (!--depth) goto done;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
861 if (depth < min_depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
862 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
863 if (no_error)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
864 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
865 error ("Containing expression ends prematurely");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
866 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
867 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
868
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
869 case Sstring:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
870 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
871 /* XEmacs change: call syntax_match on character */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
872 Emchar ch = BUF_FETCH_CHAR (buf, from - 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
873 Lisp_Object stermobj = syntax_match (table, ch);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
874 Emchar stringterm;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
875
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
876 if (CHARP (stermobj))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
877 stringterm = XCHAR (stermobj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
878 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
879 stringterm = ch;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
880
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
881 while (1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
882 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
883 if (from >= stop)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
884 goto lose;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
885 if (BUF_FETCH_CHAR (buf, from) == stringterm)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
886 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
887 switch (SYNTAX (table, BUF_FETCH_CHAR (buf, from)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
888 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
889 case Scharquote:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
890 case Sescape:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
891 from++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
892 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
893 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
894 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
895 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
896 from++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
897 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
898 from++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
899 if (!depth && sexpflag) goto done;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
900 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
901 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
902
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
903 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
904 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
905 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
906 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
907
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
908 /* Reached end of buffer. Error if within object,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
909 return nil if between */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
910 if (depth) goto lose;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
911
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
912 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
913
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
914 /* End of object reached */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
915 done:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
916 count--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
917 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
918
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
919 while (count < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
920 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
921 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
922
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
923 stop = BUF_BEGV (buf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
924 while (from > stop)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
925 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
926 int mask = 0; /* mask for finding matching comment style */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
927
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
928 from--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
929 quoted = char_quoted (buf, from);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
930 if (quoted)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
931 from--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
932
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
933 c = BUF_FETCH_CHAR (buf, from);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
934 code = SYNTAX_UNSAFE (table, c);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
935
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
936 if (code == Sendcomment && parse_sexp_ignore_comments)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
937 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
938 /* we have found a single char end comment. we must record
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
939 the comment style encountered so that later, we can match
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
940 only the proper comment begin sequence of the same style */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
941 mask = SYNTAX_COMMENT_1CHAR_MASK (table, c);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
942 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
943
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
944 else if (from > stop
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
945 && SYNTAX_END_P (table, BUF_FETCH_CHAR (buf, from-1), c)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
946 && !char_quoted (buf, from - 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
947 && parse_sexp_ignore_comments)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
948 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
949 /* we must record the comment style encountered so that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
950 later, we can match only the proper comment begin
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
951 sequence of the same style */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
952 code = Sendcomment;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
953 mask = SYNTAX_COMMENT_MASK_END (table,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
954 BUF_FETCH_CHAR (buf, from - 1),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
955 c);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
956 from--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
957 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
958
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
959 if (SYNTAX_PREFIX_UNSAFE (table, c))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
960 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
961
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
962 switch (((quoted) ? Sword : code))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
963 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
964 case Sword:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
965 case Sextword:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
966 case Ssymbol:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
967 if (depth || !sexpflag) break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
968 /* This word counts as a sexp; count object finished after
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
969 passing it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
970 while (from > stop)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
971 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
972 enum syntaxcode syncode;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
973 quoted = char_quoted (buf, from - 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
974
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
975 if (quoted)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
976 from--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
977 if (! (quoted
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
978 || (syncode =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
979 SYNTAX (table, BUF_FETCH_CHAR (buf, from - 1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
980 == Sword
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
981 || syncode == Sextword
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
982 || syncode == Ssymbol
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
983 || syncode == Squote))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
984 goto done2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
985 from--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
986 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
987 goto done2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
988
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
989 case Smath:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
990 if (!sexpflag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
991 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
992 if (from != stop && c == BUF_FETCH_CHAR (buf, from - 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
993 from--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
994 if (mathexit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
995 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
996 mathexit = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
997 goto open2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
998 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
999 mathexit = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1000
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1001 case Sclose:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1002 if (!++depth) goto done2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1003 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1004
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1005 case Sopen:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1006 open2:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1007 if (!--depth) goto done2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1008 if (depth < min_depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1009 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1010 if (no_error)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1011 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1012 error ("Containing expression ends prematurely");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1013 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1014 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1015
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1016 case Sendcomment:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1017 if (parse_sexp_ignore_comments)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1018 from = find_start_of_comment (buf, from, stop, mask);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1019 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1020
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1021 case Sstring:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1022 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1023 /* XEmacs change: call syntax_match() on character */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1024 Emchar ch = BUF_FETCH_CHAR (buf, from);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1025 Lisp_Object stermobj = syntax_match (table, ch);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1026 Emchar stringterm;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1027
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1028 if (CHARP (stermobj))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1029 stringterm = XCHAR (stermobj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1030 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1031 stringterm = ch;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1032
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1033 while (1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1034 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1035 if (from == stop) goto lose;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1036 if (!char_quoted (buf, from - 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1037 && stringterm == BUF_FETCH_CHAR (buf, from - 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1038 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1039 from--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1040 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1041 from--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1042 if (!depth && sexpflag) goto done2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1043 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1044 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1045 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1046 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1047
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1048 /* Reached start of buffer. Error if within object,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1049 return nil if between */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1050 if (depth) goto lose;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1051
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1052 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1053
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1054 done2:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1055 count++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1056 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1057
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1058
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1059 return (make_int (from));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1060
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1061 lose:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1062 if (!no_error)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1063 error ("Unbalanced parentheses");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1064 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1065 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1066
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1067 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1068 char_quoted (struct buffer *buf, Bufpos pos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1069 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1070 enum syntaxcode code;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1071 Bufpos beg = BUF_BEGV (buf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1072 int quoted = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1073 Lisp_Object table = buf->syntax_table;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1074
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1075 while (pos > beg
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1076 && ((code = SYNTAX (table, BUF_FETCH_CHAR (buf, pos - 1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1077 == Scharquote
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1078 || code == Sescape))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1079 pos--, quoted = !quoted;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1080 return quoted;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1081 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1082
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1083 DEFUN ("scan-lists", Fscan_lists, 3, 5, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1084 Scan from character number FROM by COUNT lists.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1085 Returns the character number of the position thus found.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1086
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1087 If DEPTH is nonzero, paren depth begins counting from that value,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1088 only places where the depth in parentheses becomes zero
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1089 are candidates for stopping; COUNT such places are counted.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1090 Thus, a positive value for DEPTH means go out levels.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1091
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1092 Comments are ignored if `parse-sexp-ignore-comments' is non-nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1093
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1094 If the beginning or end of (the accessible part of) the buffer is reached
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1095 and the depth is wrong, an error is signaled.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1096 If the depth is right but the count is not used up, nil is returned.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1097
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1098 If optional arg BUFFER is non-nil, scanning occurs in that buffer instead
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1099 of in the current buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1100
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1101 If optional arg NOERROR is non-nil, scan-lists will return nil instead of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1102 signalling an error.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1103 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1104 (from, count, depth, buffer, no_error))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1105 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1106 struct buffer *buf;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1107
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1108 CHECK_INT (from);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1109 CHECK_INT (count);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1110 CHECK_INT (depth);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1111 buf = decode_buffer (buffer, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1112
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1113 return scan_lists (buf, XINT (from), XINT (count), XINT (depth), 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1114 !NILP (no_error));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1115 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1116
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1117 DEFUN ("scan-sexps", Fscan_sexps, 2, 4, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1118 Scan from character number FROM by COUNT balanced expressions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1119 If COUNT is negative, scan backwards.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1120 Returns the character number of the position thus found.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1121
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1122 Comments are ignored if `parse-sexp-ignore-comments' is non-nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1123
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1124 If the beginning or end of (the accessible part of) the buffer is reached
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1125 in the middle of a parenthetical grouping, an error is signaled.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1126 If the beginning or end is reached between groupings
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1127 but before count is used up, nil is returned.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1128
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1129 If optional arg BUFFER is non-nil, scanning occurs in that buffer instead
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1130 of in the current buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1131
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1132 If optional arg NOERROR is non-nil, scan-sexps will return nil instead of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1133 signalling an error.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1134 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1135 (from, count, buffer, no_error))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1136 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1137 struct buffer *buf = decode_buffer (buffer, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1138 CHECK_INT (from);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1139 CHECK_INT (count);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1140
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1141 return scan_lists (buf, XINT (from), XINT (count), 0, 1, !NILP (no_error));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1142 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1143
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1144 DEFUN ("backward-prefix-chars", Fbackward_prefix_chars, 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1145 Move point backward over any number of chars with prefix syntax.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1146 This includes chars with \"quote\" or \"prefix\" syntax (' or p).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1147
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1148 Optional arg BUFFER defaults to the current buffer.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1149 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1150 (buffer))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1151 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1152 struct buffer *buf = decode_buffer (buffer, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1153 Bufpos beg = BUF_BEGV (buf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1154 Bufpos pos = BUF_PT (buf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1155 Lisp_Object table = buf->syntax_table;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1156
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1157 while (pos > beg && !char_quoted (buf, pos - 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1158 && (SYNTAX (table, BUF_FETCH_CHAR (buf, pos - 1)) == Squote
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1159 || SYNTAX_PREFIX (table, BUF_FETCH_CHAR (buf, pos - 1))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1160 pos--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1161
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1162 BUF_SET_PT (buf, pos);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1163
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1164 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1165 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1166
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1167 /* Parse forward from FROM to END,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1168 assuming that FROM has state OLDSTATE (nil means FROM is start of function),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1169 and return a description of the state of the parse at END.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1170 If STOPBEFORE is nonzero, stop at the start of an atom.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1171 If COMMENTSTOP is nonzero, stop at the start of a comment. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1172
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1173 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1174 scan_sexps_forward (struct buffer *buf, struct lisp_parse_state *stateptr,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1175 Bufpos from, Bufpos end,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1176 int targetdepth, int stopbefore,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1177 Lisp_Object oldstate,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1178 int commentstop)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1179 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1180 struct lisp_parse_state state;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1181
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1182 enum syntaxcode code;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1183 struct level { int last, prev; };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1184 struct level levelstart[100];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1185 struct level *curlevel = levelstart;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1186 struct level *endlevel = levelstart + 100;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1187 int depth; /* Paren depth of current scanning location.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1188 level - levelstart equals this except
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1189 when the depth becomes negative. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1190 int mindepth; /* Lowest DEPTH value seen. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1191 int start_quoted = 0; /* Nonzero means starting after a char quote */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1192 Lisp_Object table = buf->syntax_table;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1193 Lisp_Object tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1194 int mask; /* comment mask */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1195
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1196 if (NILP (oldstate))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1197 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1198 depth = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1199 state.instring = -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1200 state.incomment = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1201 state.comstyle = 0; /* comment style a by default */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1202 mask = SYNTAX_COMMENT_STYLE_A;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1203 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1204 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1205 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1206 tem = Fcar (oldstate); /* elt 0, depth */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1207 if (!NILP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1208 depth = XINT (tem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1209 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1210 depth = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1211
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1212 oldstate = Fcdr (oldstate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1213 oldstate = Fcdr (oldstate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1214 oldstate = Fcdr (oldstate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1215 tem = Fcar (oldstate); /* elt 3, instring */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1216 state.instring = !NILP (tem) ? XINT (tem) : -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1217
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1218 oldstate = Fcdr (oldstate); /* elt 4, incomment */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1219 tem = Fcar (oldstate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1220 state.incomment = !NILP (tem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1221
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1222 oldstate = Fcdr (oldstate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1223 tem = Fcar (oldstate); /* elt 5, follows-quote */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1224 start_quoted = !NILP (tem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1225
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1226 /* if the eighth element of the list is nil, we are in comment style
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1227 a. if it is non-nil, we are in comment style b */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1228 oldstate = Fcdr (oldstate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1229 oldstate = Fcdr (oldstate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1230 oldstate = Fcdr (oldstate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1231 tem = Fcar (oldstate); /* elt 8, comment style a */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1232 state.comstyle = !NILP (tem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1233 mask = state.comstyle ? SYNTAX_COMMENT_STYLE_B : SYNTAX_COMMENT_STYLE_A;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1234 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1235 state.quoted = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1236 mindepth = depth;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1237
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1238 curlevel->prev = -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1239 curlevel->last = -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1240
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1241 /* Enter the loop at a place appropriate for initial state. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1242
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1243 if (state.incomment) goto startincomment;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1244 if (state.instring >= 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1245 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1246 if (start_quoted) goto startquotedinstring;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1247 goto startinstring;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1248 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1249 if (start_quoted) goto startquoted;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1250
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1251 while (from < end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1252 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1253 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1254
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1255 code = SYNTAX (table, BUF_FETCH_CHAR (buf, from));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1256 from++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1257
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1258 if (code == Scomment)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1259 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1260 /* record the comment style we have entered so that only the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1261 comment-ender sequence (or single char) of the same style
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1262 actually terminates the comment section. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1263 mask = SYNTAX_COMMENT_1CHAR_MASK (table,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1264 BUF_FETCH_CHAR (buf, from-1));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1265 state.comstyle = (mask == SYNTAX_COMMENT_STYLE_B);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1266 state.comstart = from - 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1267 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1268
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1269 else if (from < end &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1270 SYNTAX_START_P (table, BUF_FETCH_CHAR (buf, from-1),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1271 BUF_FETCH_CHAR (buf, from)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1272 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1273 /* Record the comment style we have entered so that only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1274 the comment-end sequence of the same style actually
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1275 terminates the comment section. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1276 code = Scomment;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1277 mask = SYNTAX_COMMENT_MASK_START (table,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1278 BUF_FETCH_CHAR (buf, from-1),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1279 BUF_FETCH_CHAR (buf, from));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1280 state.comstyle = (mask == SYNTAX_COMMENT_STYLE_B);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1281 state.comstart = from-1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1282 from++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1283 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1284
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1285 if (SYNTAX_PREFIX (table, BUF_FETCH_CHAR (buf, from - 1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1286 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1287 switch (code)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1288 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1289 case Sescape:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1290 case Scharquote:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1291 if (stopbefore) goto stop; /* this arg means stop at sexp start */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1292 curlevel->last = from - 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1293 startquoted:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1294 if (from == end) goto endquoted;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1295 from++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1296 goto symstarted;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1297 /* treat following character as a word constituent */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1298 case Sword:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1299 case Sextword:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1300 case Ssymbol:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1301 if (stopbefore) goto stop; /* this arg means stop at sexp start */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1302 curlevel->last = from - 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1303 symstarted:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1304 while (from < end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1305 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1306 switch (SYNTAX (table, BUF_FETCH_CHAR (buf, from)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1307 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1308 case Scharquote:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1309 case Sescape:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1310 from++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1311 if (from == end) goto endquoted;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1312 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1313 case Sword:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1314 case Sextword:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1315 case Ssymbol:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1316 case Squote:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1317 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1318 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1319 goto symdone;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1320 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1321 from++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1322 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1323 symdone:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1324 curlevel->prev = curlevel->last;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1325 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1326
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1327 case Scomment:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1328 state.incomment = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1329 startincomment:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1330 if (commentstop)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1331 goto done;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1332 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1333 Bufpos newfrom = find_end_of_comment (buf, from, end, mask);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1334 if (newfrom < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1335 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1336 /* we terminated search because from == end */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1337 from = end;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1338 goto done;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1339 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1340 from = newfrom;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1341 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1342 state.incomment = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1343 state.comstyle = 0; /* reset the comment style */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1344 mask = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1345 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1346
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1347 case Sopen:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1348 if (stopbefore) goto stop; /* this arg means stop at sexp start */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1349 depth++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1350 /* curlevel++->last ran into compiler bug on Apollo */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1351 curlevel->last = from - 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1352 if (++curlevel == endlevel)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1353 error ("Nesting too deep for parser");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1354 curlevel->prev = -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1355 curlevel->last = -1;
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1356 if (targetdepth == depth) goto done;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1357 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1358
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1359 case Sclose:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1360 depth--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1361 if (depth < mindepth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1362 mindepth = depth;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1363 if (curlevel != levelstart)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1364 curlevel--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1365 curlevel->prev = curlevel->last;
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1366 if (targetdepth == depth) goto done;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1367 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1368
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1369 case Sstring:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1370 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1371 Emchar ch;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1372 if (stopbefore) goto stop; /* this arg means stop at sexp start */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1373 curlevel->last = from - 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1374 /* XEmacs change: call syntax_match() on character */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1375 ch = BUF_FETCH_CHAR (buf, from - 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1376 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1377 Lisp_Object stermobj = syntax_match (table, ch);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1378
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1379 if (CHARP (stermobj))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1380 state.instring = XCHAR (stermobj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1381 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1382 state.instring = ch;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1383 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1384 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1385 startinstring:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1386 while (1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1387 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1388 if (from >= end) goto done;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1389 if (BUF_FETCH_CHAR (buf, from) == state.instring) break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1390 switch (SYNTAX (table, BUF_FETCH_CHAR (buf, from)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1391 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1392 case Scharquote:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1393 case Sescape:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1394 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1395 from++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1396 startquotedinstring:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1397 if (from >= end) goto endquoted;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1398 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1399 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1400 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1401 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1402 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1403 from++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1404 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1405 state.instring = -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1406 curlevel->prev = curlevel->last;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1407 from++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1408 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1409
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1410 case Smath:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1411 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1412
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1413 case Swhitespace:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1414 case Spunct:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1415 case Squote:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1416 case Sendcomment:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1417 case Sinherit:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1418 case Smax:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1419 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1420 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1421 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1422 goto done;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1423
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1424 stop: /* Here if stopping before start of sexp. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1425 from--; /* We have just fetched the char that starts it; */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1426 goto done; /* but return the position before it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1427
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1428 endquoted:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1429 state.quoted = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1430 done:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1431 state.depth = depth;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1432 state.mindepth = mindepth;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1433 state.thislevelstart = curlevel->prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1434 state.prevlevelstart
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1435 = (curlevel == levelstart) ? -1 : (curlevel - 1)->last;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1436 state.location = from;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1437
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1438 *stateptr = state;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1439 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1440
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1441 DEFUN ("parse-partial-sexp", Fparse_partial_sexp, 2, 7, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1442 Parse Lisp syntax starting at FROM until TO; return status of parse at TO.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1443 Parsing stops at TO or when certain criteria are met;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1444 point is set to where parsing stops.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1445 If fifth arg STATE is omitted or nil,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1446 parsing assumes that FROM is the beginning of a function.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1447 Value is a list of eight elements describing final state of parsing:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1448 0. depth in parens.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1449 1. character address of start of innermost containing list; nil if none.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1450 2. character address of start of last complete sexp terminated.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1451 3. non-nil if inside a string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1452 (It is the character that will terminate the string.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1453 4. t if inside a comment.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1454 5. t if following a quote character.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1455 6. the minimum paren-depth encountered during this scan.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1456 7. nil if in comment style a, or not in a comment; t if in comment style b
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1457 If third arg TARGETDEPTH is non-nil, parsing stops if the depth
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1458 in parentheses becomes equal to TARGETDEPTH.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1459 Fourth arg STOPBEFORE non-nil means stop when come to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1460 any character that starts a sexp.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1461 Fifth arg STATE is an eight-element list like what this function returns.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1462 It is used to initialize the state of the parse. Its second and third
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1463 elements are ignored.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1464 Sixth arg COMMENTSTOP non-nil means stop at the start of a comment.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1465 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1466 (from, to, targetdepth, stopbefore, oldstate, commentstop, buffer))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1467 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1468 struct lisp_parse_state state;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1469 int target;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1470 Bufpos start, end;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1471 struct buffer *buf = decode_buffer (buffer, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1472
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1473 if (!NILP (targetdepth))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1474 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1475 CHECK_INT (targetdepth);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1476 target = XINT (targetdepth);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1477 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1478 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1479 target = -100000; /* We won't reach this depth */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1480
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1481 get_buffer_range_char (buf, from, to, &start, &end, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1482 scan_sexps_forward (buf, &state, start, end,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1483 target, !NILP (stopbefore), oldstate,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1484 !NILP (commentstop));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1485
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1486 BUF_SET_PT (buf, state.location);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1487
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1488 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1489 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1490 * This junk is necessary because of a bug in SparcWorks cc 2.0.1. It
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1491 * doesn't handle functions as arguments to other functions very well.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1492 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1493 Lisp_Object retval[8];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1494
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1495 retval[0] = make_int (state.depth);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1496 retval[1] = ((state.prevlevelstart < 0) ? Qnil :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1497 make_int (state.prevlevelstart));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1498 retval[2] = ((state.thislevelstart < 0) ? Qnil :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1499 make_int (state.thislevelstart));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1500 retval[3] = ((state.instring >= 0) ? make_int (state.instring) : Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1501 retval[4] = ((state.incomment) ? Qt : Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1502 retval[5] = ((state.quoted) ? Qt : Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1503 retval[6] = make_int (state.mindepth);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1504 retval[7] = ((state.comstyle) ? Qt : Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1505
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1506 return (Flist (8, retval));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1507 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1508 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1509
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1510
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1511 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1512 /* initialization */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1513 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1514
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1515 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1516 syms_of_syntax (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1517 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1518 defsymbol (&Qsyntax_table_p, "syntax-table-p");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1519
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1520 DEFSUBR (Fsyntax_table_p);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1521 DEFSUBR (Fsyntax_table);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1522 DEFSUBR (Fstandard_syntax_table);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1523 DEFSUBR (Fcopy_syntax_table);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1524 DEFSUBR (Fset_syntax_table);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1525 DEFSUBR (Fsyntax_designator_chars);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1526 DEFSUBR (Fchar_syntax);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1527 DEFSUBR (Fmatching_paren);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1528 /* DEFSUBR (Fmodify_syntax_entry); now in Lisp. */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1529 /* DEFSUBR (Fdescribe_syntax); now in Lisp. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1530
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1531 DEFSUBR (Fforward_word);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1532
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1533 DEFSUBR (Fforward_comment);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1534 DEFSUBR (Fscan_lists);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1535 DEFSUBR (Fscan_sexps);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1536 DEFSUBR (Fbackward_prefix_chars);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1537 DEFSUBR (Fparse_partial_sexp);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1538 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1539
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1540 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1541 vars_of_syntax (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1542 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1543 DEFVAR_BOOL ("parse-sexp-ignore-comments", &parse_sexp_ignore_comments /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1544 Non-nil means `forward-sexp', etc., should treat comments as whitespace.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1545 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1546
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1547 words_include_escapes = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1548 DEFVAR_BOOL ("words-include-escapes", &words_include_escapes /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1549 Non-nil means `forward-word', etc., should treat escape chars part of words.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1550 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1551
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1552 no_quit_in_re_search = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1553 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1554
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1555 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1556 complex_vars_of_syntax (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1557 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1558 struct Lisp_Vector *v;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1559 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1560
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1561 /* Set this now, so first buffer creation can refer to it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1562 /* Make it nil before calling copy-syntax-table
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1563 so that copy-syntax-table will know not to try to copy from garbage */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1564 Vstandard_syntax_table = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1565 Vstandard_syntax_table = Fcopy_syntax_table (Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1566 staticpro (&Vstandard_syntax_table);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1567
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1568 Vsyntax_designator_chars_string = make_pure_string (syntax_code_spec,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1569 Smax, Qnil, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1570 staticpro (&Vsyntax_designator_chars_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1571
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1572 v = XVECTOR (Vstandard_syntax_table);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1573
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1574 for (i = 'a'; i <= 'z'; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1575 v->contents[i] = make_int ((int) Sword);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1576 for (i = 'A'; i <= 'Z'; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1577 v->contents[i] = make_int ((int) Sword);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1578 for (i = '0'; i <= '9'; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1579 v->contents[i] = make_int ((int) Sword);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1580 v->contents['$'] = make_int ((int) Sword);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1581 v->contents['%'] = make_int ((int) Sword);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1582
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1583 v->contents['('] = make_int ((int) Sopen + (')' << 8));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1584 v->contents[')'] = make_int ((int) Sclose + ('(' << 8));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1585 v->contents['['] = make_int ((int) Sopen + (']' << 8));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1586 v->contents[']'] = make_int ((int) Sclose + ('[' << 8));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1587 v->contents['{'] = make_int ((int) Sopen + ('}' << 8));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1588 v->contents['}'] = make_int ((int) Sclose + ('{' << 8));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1589 v->contents['"'] = make_int ((int) Sstring);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1590 v->contents['\\'] = make_int ((int) Sescape);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1591
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1592 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1593 CONST char *p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1594
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1595 for (p = "_-+*/&|<>="; *p; p++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1596 v->contents[(int) *p] = make_int ((int) Ssymbol);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1597
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1598 for (p = ".,;:?!#@~^'`"; *p; p++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1599 v->contents[(int) *p] = make_int ((int) Spunct);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1600 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1601 }