Mercurial > emacs
annotate src/syntax.c @ 1336:32f079d092a9
(vc-backend-checkin): Use apply on vc-do-command: vc-checkin-switches is a
list.
author | Roland McGrath <roland@gnu.org> |
---|---|
date | Mon, 05 Oct 1992 05:20:52 +0000 |
parents | d9a103f4843e |
children | 3f3934ca2df6 |
rev | line source |
---|---|
163 | 1 /* GNU Emacs routines to deal with syntax tables; also word and list parsing. |
726 | 2 Copyright (C) 1985, 1987, 1992 Free Software Foundation, Inc. |
163 | 3 |
4 This file is part of GNU Emacs. | |
5 | |
6 GNU Emacs is free software; you can redistribute it and/or modify | |
7 it under the terms of the GNU General Public License as published by | |
726 | 8 the Free Software Foundation; either version 2, or (at your option) |
163 | 9 any later version. |
10 | |
11 GNU Emacs is distributed in the hope that it will be useful, | |
12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 GNU General Public License for more details. | |
15 | |
16 You should have received a copy of the GNU General Public License | |
17 along with GNU Emacs; see the file COPYING. If not, write to | |
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
19 | |
20 | |
21 #include "config.h" | |
22 #include <ctype.h> | |
23 #include "lisp.h" | |
24 #include "commands.h" | |
25 #include "buffer.h" | |
26 #include "syntax.h" | |
27 | |
28 Lisp_Object Qsyntax_table_p; | |
29 | |
30 int words_include_escapes; | |
31 | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
32 /* This is the internal form of the parse state used in parse-partial-sexp. */ |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
33 |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
34 struct lisp_parse_state |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
35 { |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
36 int depth; /* Depth at end of parsing */ |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
37 int instring; /* -1 if not within string, else desired terminator. */ |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
38 int incomment; /* Nonzero if within a comment at end of parsing */ |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
39 int comstyle; /* comment style a=0, or b=1 */ |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
40 int quoted; /* Nonzero if just after an escape char at end of parsing */ |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
41 int thislevelstart; /* Char number of most recent start-of-expression at current level */ |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
42 int prevlevelstart; /* Char number of start of containing expression */ |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
43 int location; /* Char number at which parsing stopped. */ |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
44 int mindepth; /* Minimum depth seen while scanning. */ |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
45 int comstart; /* Position just after last comment starter. */ |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
46 }; |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
47 |
1167
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
48 /* These variables are a cache for finding the start of a defun. |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
49 find_start_pos is the place for which the defun start was found. |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
50 find_start_value is the defun start position found for it. |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
51 find_start_buffer is the buffer it was found in. |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
52 find_start_begv is the BEGV value when it was found. |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
53 find_start_modiff is the value of MODIFF when it was found. */ |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
54 |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
55 static int find_start_pos; |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
56 static int find_start_value; |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
57 static struct buffer *find_start_buffer; |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
58 static int find_start_begv; |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
59 static int find_start_modiff; |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
60 |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
61 /* Find a defun-start that is the last one before POS (or nearly the last). |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
62 We record what we find, so that another call in the same area |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
63 can return the same value right away. */ |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
64 |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
65 static int |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
66 find_defun_start (pos) |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
67 int pos; |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
68 { |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
69 int tem; |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
70 int shortage; |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
71 |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
72 /* Use previous finding, if it's valid and applies to this inquiry. */ |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
73 if (current_buffer == find_start_buffer |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
74 /* Reuse the defun-start even if POS is a little farther on. |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
75 POS might be in the next defun, but that's ok. |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
76 Our value may not be the best possible, but will still be usable. */ |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
77 && pos <= find_start_pos + 1000 |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
78 && pos >= find_start_value |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
79 && BEGV == find_start_begv |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
80 && MODIFF == find_start_modiff) |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
81 return find_start_value; |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
82 |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
83 /* Back up to start of line. */ |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
84 tem = scan_buffer ('\n', pos, -1, &shortage); |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
85 /* If we found a newline, we moved back over it, so advance fwd past it. */ |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
86 if (shortage == 0) |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
87 tem++; |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
88 |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
89 while (tem > BEGV) |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
90 { |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
91 /* Open-paren at start of line means we found our defun-start. */ |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
92 if (SYNTAX (FETCH_CHAR (tem)) == Sopen) |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
93 break; |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
94 /* Move to beg of previous line. */ |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
95 tem = scan_buffer ('\n', tem, -2, &shortage); |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
96 if (shortage == 0) |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
97 tem++; |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
98 } |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
99 |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
100 /* Record what we found, for the next try. */ |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
101 find_start_value = tem; |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
102 find_start_buffer = current_buffer; |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
103 find_start_modiff = MODIFF; |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
104 find_start_begv = BEGV; |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
105 find_start_pos = pos; |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
106 |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
107 return find_start_value; |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
108 } |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
109 |
163 | 110 DEFUN ("syntax-table-p", Fsyntax_table_p, Ssyntax_table_p, 1, 1, 0, |
111 "Return t if ARG is a syntax table.\n\ | |
112 Any vector of 256 elements will do.") | |
113 (obj) | |
114 Lisp_Object obj; | |
115 { | |
116 if (XTYPE (obj) == Lisp_Vector && XVECTOR (obj)->size == 0400) | |
117 return Qt; | |
118 return Qnil; | |
119 } | |
120 | |
121 Lisp_Object | |
122 check_syntax_table (obj) | |
123 Lisp_Object obj; | |
124 { | |
125 register Lisp_Object tem; | |
126 while (tem = Fsyntax_table_p (obj), | |
485 | 127 NILP (tem)) |
163 | 128 obj = wrong_type_argument (Qsyntax_table_p, obj, 0); |
129 return obj; | |
130 } | |
131 | |
132 | |
133 DEFUN ("syntax-table", Fsyntax_table, Ssyntax_table, 0, 0, 0, | |
134 "Return the current syntax table.\n\ | |
135 This is the one specified by the current buffer.") | |
136 () | |
137 { | |
138 return current_buffer->syntax_table; | |
139 } | |
140 | |
141 DEFUN ("standard-syntax-table", Fstandard_syntax_table, | |
142 Sstandard_syntax_table, 0, 0, 0, | |
143 "Return the standard syntax table.\n\ | |
144 This is the one used for new buffers.") | |
145 () | |
146 { | |
147 return Vstandard_syntax_table; | |
148 } | |
149 | |
150 DEFUN ("copy-syntax-table", Fcopy_syntax_table, Scopy_syntax_table, 0, 1, 0, | |
151 "Construct a new syntax table and return it.\n\ | |
152 It is a copy of the TABLE, which defaults to the standard syntax table.") | |
153 (table) | |
154 Lisp_Object table; | |
155 { | |
156 Lisp_Object size, val; | |
157 XFASTINT (size) = 0400; | |
158 XFASTINT (val) = 0; | |
159 val = Fmake_vector (size, val); | |
485 | 160 if (!NILP (table)) |
163 | 161 table = check_syntax_table (table); |
485 | 162 else if (NILP (Vstandard_syntax_table)) |
163 | 163 /* Can only be null during initialization */ |
164 return val; | |
165 else table = Vstandard_syntax_table; | |
166 | |
167 bcopy (XVECTOR (table)->contents, | |
168 XVECTOR (val)->contents, 0400 * sizeof (Lisp_Object)); | |
169 return val; | |
170 } | |
171 | |
172 DEFUN ("set-syntax-table", Fset_syntax_table, Sset_syntax_table, 1, 1, 0, | |
173 "Select a new syntax table for the current buffer.\n\ | |
174 One argument, a syntax table.") | |
175 (table) | |
176 Lisp_Object table; | |
177 { | |
178 table = check_syntax_table (table); | |
179 current_buffer->syntax_table = table; | |
180 /* Indicate that this buffer now has a specified syntax table. */ | |
181 current_buffer->local_var_flags |= buffer_local_flags.syntax_table; | |
182 return table; | |
183 } | |
184 | |
185 /* Convert a letter which signifies a syntax code | |
186 into the code it signifies. | |
187 This is used by modify-syntax-entry, and other things. */ | |
188 | |
189 unsigned char syntax_spec_code[0400] = | |
190 { 0377, 0377, 0377, 0377, 0377, 0377, 0377, 0377, | |
191 0377, 0377, 0377, 0377, 0377, 0377, 0377, 0377, | |
192 0377, 0377, 0377, 0377, 0377, 0377, 0377, 0377, | |
193 0377, 0377, 0377, 0377, 0377, 0377, 0377, 0377, | |
194 (char) Swhitespace, 0377, (char) Sstring, 0377, | |
195 (char) Smath, 0377, 0377, (char) Squote, | |
196 (char) Sopen, (char) Sclose, 0377, 0377, | |
197 0377, (char) Swhitespace, (char) Spunct, (char) Scharquote, | |
198 0377, 0377, 0377, 0377, 0377, 0377, 0377, 0377, | |
199 0377, 0377, 0377, 0377, | |
200 (char) Scomment, 0377, (char) Sendcomment, 0377, | |
201 0377, 0377, 0377, 0377, 0377, 0377, 0377, 0377, /* @, A, ... */ | |
202 0377, 0377, 0377, 0377, 0377, 0377, 0377, 0377, | |
203 0377, 0377, 0377, 0377, 0377, 0377, 0377, (char) Sword, | |
204 0377, 0377, 0377, 0377, (char) Sescape, 0377, 0377, (char) Ssymbol, | |
205 0377, 0377, 0377, 0377, 0377, 0377, 0377, 0377, /* `, a, ... */ | |
206 0377, 0377, 0377, 0377, 0377, 0377, 0377, 0377, | |
207 0377, 0377, 0377, 0377, 0377, 0377, 0377, (char) Sword, | |
208 0377, 0377, 0377, 0377, 0377, 0377, 0377, 0377 | |
209 }; | |
210 | |
211 /* Indexed by syntax code, give the letter that describes it. */ | |
212 | |
213 char syntax_code_spec[13] = | |
214 { | |
215 ' ', '.', 'w', '_', '(', ')', '\'', '\"', '$', '\\', '/', '<', '>' | |
216 }; | |
217 | |
218 DEFUN ("char-syntax", Fchar_syntax, Schar_syntax, 1, 1, 0, | |
219 "Return the syntax code of CHAR, described by a character.\n\ | |
220 For example, if CHAR is a word constituent, the character `?w' is returned.\n\ | |
221 The characters that correspond to various syntax codes\n\ | |
222 are listed in the documentation of `modify-syntax-entry'.") | |
223 (ch) | |
224 Lisp_Object ch; | |
225 { | |
226 CHECK_NUMBER (ch, 0); | |
227 return make_number (syntax_code_spec[(int) SYNTAX (0xFF & XINT (ch))]); | |
228 } | |
229 | |
230 /* This comment supplies the doc string for modify-syntax-entry, | |
231 for make-docfile to see. We cannot put this in the real DEFUN | |
232 due to limits in the Unix cpp. | |
233 | |
234 DEFUN ("modify-syntax-entry", foo, bar, 0, 0, 0, | |
235 "Set syntax for character CHAR according to string S.\n\ | |
236 The syntax is changed only for table TABLE, which defaults to\n\ | |
237 the current buffer's syntax table.\n\ | |
238 The first character of S should be one of the following:\n\ | |
624 | 239 Space or - whitespace syntax. w word constituent.\n\ |
240 _ symbol constituent. . punctuation.\n\ | |
241 ( open-parenthesis. ) close-parenthesis.\n\ | |
242 \" string quote. \\ escape.\n\ | |
243 $ paired delimiter. ' expression quote or prefix operator.\n\ | |
244 < comment starter. > comment ender.\n\ | |
245 / character-quote.\n\ | |
163 | 246 Only single-character comment start and end sequences are represented thus.\n\ |
247 Two-character sequences are represented as described below.\n\ | |
248 The second character of S is the matching parenthesis,\n\ | |
249 used only if the first character is `(' or `)'.\n\ | |
250 Any additional characters are flags.\n\ | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
251 Defined flags are the characters 1, 2, 3, 4, b, and p.\n\ |
163 | 252 1 means C is the start of a two-char comment start sequence.\n\ |
253 2 means C is the second character of such a sequence.\n\ | |
254 3 means C is the start of a two-char comment end sequence.\n\ | |
255 4 means C is the second character of such a sequence.\n\ | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
256 \n\ |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
257 There can be up to two orthogonal comment sequences. This is to support\n\ |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
258 language modes such as C++. By default, all comment sequences are of style\n\ |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
259 a, but you can set the comment sequence style to b (on the second character of a\n\ |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
260 comment-start, or the first character of a comment-end sequence) by using\n\ |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
261 this flag:\n\ |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
262 b means C is part of comment sequence b.\n\ |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
263 \n\ |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
264 p means C is a prefix character for `backward-prefix-chars';\n\ |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
265 such characters are treated as whitespace when they occur\n\ |
163 | 266 between expressions.") |
267 | |
268 */ | |
269 | |
270 DEFUN ("modify-syntax-entry", Fmodify_syntax_entry, Smodify_syntax_entry, 2, 3, | |
271 /* I really don't know why this is interactive | |
272 help-form should at least be made useful whilst reading the second arg | |
273 */ | |
274 "cSet syntax for character: \nsSet syntax for %s to: ", | |
275 0 /* See immediately above */) | |
276 (c, newentry, syntax_table) | |
277 Lisp_Object c, newentry, syntax_table; | |
278 { | |
279 register unsigned char *p, match; | |
280 register enum syntaxcode code; | |
281 Lisp_Object val; | |
282 | |
283 CHECK_NUMBER (c, 0); | |
284 CHECK_STRING (newentry, 1); | |
485 | 285 if (NILP (syntax_table)) |
163 | 286 syntax_table = current_buffer->syntax_table; |
287 else | |
288 syntax_table = check_syntax_table (syntax_table); | |
289 | |
290 p = XSTRING (newentry)->data; | |
291 code = (enum syntaxcode) syntax_spec_code[*p++]; | |
292 if (((int) code & 0377) == 0377) | |
293 error ("invalid syntax description letter: %c", c); | |
294 | |
295 match = *p; | |
296 if (match) p++; | |
297 if (match == ' ') match = 0; | |
298 | |
299 XFASTINT (val) = (match << 8) + (int) code; | |
300 while (*p) | |
301 switch (*p++) | |
302 { | |
303 case '1': | |
304 XFASTINT (val) |= 1 << 16; | |
305 break; | |
306 | |
307 case '2': | |
308 XFASTINT (val) |= 1 << 17; | |
309 break; | |
310 | |
311 case '3': | |
312 XFASTINT (val) |= 1 << 18; | |
313 break; | |
314 | |
315 case '4': | |
316 XFASTINT (val) |= 1 << 19; | |
317 break; | |
318 | |
319 case 'p': | |
320 XFASTINT (val) |= 1 << 20; | |
321 break; | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
322 |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
323 case 'b': |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
324 XFASTINT (val) |= 1 << 21; |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
325 break; |
163 | 326 } |
327 | |
328 XVECTOR (syntax_table)->contents[0xFF & XINT (c)] = val; | |
329 | |
330 return Qnil; | |
331 } | |
332 | |
333 /* Dump syntax table to buffer in human-readable format */ | |
334 | |
335 describe_syntax (value) | |
336 Lisp_Object value; | |
337 { | |
338 register enum syntaxcode code; | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
339 char desc, match, start1, start2, end1, end2, prefix, comstyle; |
163 | 340 char str[2]; |
341 | |
342 Findent_to (make_number (16), make_number (1)); | |
343 | |
344 if (XTYPE (value) != Lisp_Int) | |
345 { | |
346 insert_string ("invalid"); | |
347 return; | |
348 } | |
349 | |
350 code = (enum syntaxcode) (XINT (value) & 0377); | |
351 match = (XINT (value) >> 8) & 0377; | |
352 start1 = (XINT (value) >> 16) & 1; | |
353 start2 = (XINT (value) >> 17) & 1; | |
354 end1 = (XINT (value) >> 18) & 1; | |
355 end2 = (XINT (value) >> 19) & 1; | |
356 prefix = (XINT (value) >> 20) & 1; | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
357 comstyle = (XINT (value) >> 21) & 1; |
163 | 358 |
359 if ((int) code < 0 || (int) code >= (int) Smax) | |
360 { | |
361 insert_string ("invalid"); | |
362 return; | |
363 } | |
364 desc = syntax_code_spec[(int) code]; | |
365 | |
366 str[0] = desc, str[1] = 0; | |
367 insert (str, 1); | |
368 | |
369 str[0] = match ? match : ' '; | |
370 insert (str, 1); | |
371 | |
372 | |
373 if (start1) | |
374 insert ("1", 1); | |
375 if (start2) | |
376 insert ("2", 1); | |
377 | |
378 if (end1) | |
379 insert ("3", 1); | |
380 if (end2) | |
381 insert ("4", 1); | |
382 | |
383 if (prefix) | |
384 insert ("p", 1); | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
385 if (comstyle) |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
386 insert ("b", 1); |
163 | 387 |
388 insert_string ("\twhich means: "); | |
389 | |
390 #ifdef SWITCH_ENUM_BUG | |
391 switch ((int) code) | |
392 #else | |
393 switch (code) | |
394 #endif | |
395 { | |
396 case Swhitespace: | |
397 insert_string ("whitespace"); break; | |
398 case Spunct: | |
399 insert_string ("punctuation"); break; | |
400 case Sword: | |
401 insert_string ("word"); break; | |
402 case Ssymbol: | |
403 insert_string ("symbol"); break; | |
404 case Sopen: | |
405 insert_string ("open"); break; | |
406 case Sclose: | |
407 insert_string ("close"); break; | |
408 case Squote: | |
409 insert_string ("quote"); break; | |
410 case Sstring: | |
411 insert_string ("string"); break; | |
412 case Smath: | |
413 insert_string ("math"); break; | |
414 case Sescape: | |
415 insert_string ("escape"); break; | |
416 case Scharquote: | |
417 insert_string ("charquote"); break; | |
418 case Scomment: | |
419 insert_string ("comment"); break; | |
420 case Sendcomment: | |
421 insert_string ("endcomment"); break; | |
422 default: | |
423 insert_string ("invalid"); | |
424 return; | |
425 } | |
426 | |
427 if (match) | |
428 { | |
429 insert_string (", matches "); | |
1292
d9a103f4843e
(describe_syntax): Use insert_char to insert `match'.
Joseph Arceneaux <jla@gnu.org>
parents:
1167
diff
changeset
|
430 insert_char (match); |
163 | 431 } |
432 | |
433 if (start1) | |
434 insert_string (",\n\t is the first character of a comment-start sequence"); | |
435 if (start2) | |
436 insert_string (",\n\t is the second character of a comment-start sequence"); | |
437 | |
438 if (end1) | |
439 insert_string (",\n\t is the first character of a comment-end sequence"); | |
440 if (end2) | |
441 insert_string (",\n\t is the second character of a comment-end sequence"); | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
442 if (comstyle) |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
443 insert_string (" (comment style b)"); |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
444 |
163 | 445 if (prefix) |
446 insert_string (",\n\t is a prefix character for `backward-prefix-chars'"); | |
447 | |
448 insert_string ("\n"); | |
449 } | |
450 | |
451 Lisp_Object | |
452 describe_syntax_1 (vector) | |
453 Lisp_Object vector; | |
454 { | |
455 struct buffer *old = current_buffer; | |
456 set_buffer_internal (XBUFFER (Vstandard_output)); | |
457 describe_vector (vector, Qnil, describe_syntax, 0, Qnil, Qnil); | |
458 set_buffer_internal (old); | |
459 return Qnil; | |
460 } | |
461 | |
462 DEFUN ("describe-syntax", Fdescribe_syntax, Sdescribe_syntax, 0, 0, "", | |
463 "Describe the syntax specifications in the syntax table.\n\ | |
464 The descriptions are inserted in a buffer, which is then displayed.") | |
465 () | |
466 { | |
467 internal_with_output_to_temp_buffer | |
468 ("*Help*", describe_syntax_1, current_buffer->syntax_table); | |
469 | |
470 return Qnil; | |
471 } | |
472 | |
473 /* Return the position across COUNT words from FROM. | |
474 If that many words cannot be found before the end of the buffer, return 0. | |
475 COUNT negative means scan backward and stop at word beginning. */ | |
476 | |
477 scan_words (from, count) | |
478 register int from, count; | |
479 { | |
480 register int beg = BEGV; | |
481 register int end = ZV; | |
482 register int code; | |
483 | |
484 immediate_quit = 1; | |
485 QUIT; | |
486 | |
487 while (count > 0) | |
488 { | |
489 while (1) | |
490 { | |
491 if (from == end) | |
492 { | |
493 immediate_quit = 0; | |
494 return 0; | |
495 } | |
496 code = SYNTAX (FETCH_CHAR (from)); | |
497 if (words_include_escapes | |
498 && (code == Sescape || code == Scharquote)) | |
499 break; | |
500 if (code == Sword) | |
501 break; | |
502 from++; | |
503 } | |
504 while (1) | |
505 { | |
506 if (from == end) break; | |
507 code = SYNTAX (FETCH_CHAR (from)); | |
508 if (!(words_include_escapes | |
509 && (code == Sescape || code == Scharquote))) | |
510 if (code != Sword) | |
511 break; | |
512 from++; | |
513 } | |
514 count--; | |
515 } | |
516 while (count < 0) | |
517 { | |
518 while (1) | |
519 { | |
520 if (from == beg) | |
521 { | |
522 immediate_quit = 0; | |
523 return 0; | |
524 } | |
525 code = SYNTAX (FETCH_CHAR (from - 1)); | |
526 if (words_include_escapes | |
527 && (code == Sescape || code == Scharquote)) | |
528 break; | |
529 if (code == Sword) | |
530 break; | |
531 from--; | |
532 } | |
533 while (1) | |
534 { | |
535 if (from == beg) break; | |
536 code = SYNTAX (FETCH_CHAR (from - 1)); | |
537 if (!(words_include_escapes | |
538 && (code == Sescape || code == Scharquote))) | |
539 if (code != Sword) | |
540 break; | |
541 from--; | |
542 } | |
543 count++; | |
544 } | |
545 | |
546 immediate_quit = 0; | |
547 | |
548 return from; | |
549 } | |
550 | |
551 DEFUN ("forward-word", Fforward_word, Sforward_word, 1, 1, "p", | |
552 "Move point forward ARG words (backward if ARG is negative).\n\ | |
553 Normally returns t.\n\ | |
554 If an edge of the buffer is reached, point is left there\n\ | |
555 and nil is returned.") | |
556 (count) | |
557 Lisp_Object count; | |
558 { | |
559 int val; | |
560 CHECK_NUMBER (count, 0); | |
561 | |
562 if (!(val = scan_words (point, XINT (count)))) | |
563 { | |
564 SET_PT (XINT (count) > 0 ? ZV : BEGV); | |
565 return Qnil; | |
566 } | |
567 SET_PT (val); | |
568 return Qt; | |
569 } | |
570 | |
571 int parse_sexp_ignore_comments; | |
572 | |
573 Lisp_Object | |
574 scan_lists (from, count, depth, sexpflag) | |
575 register int from; | |
576 int count, depth, sexpflag; | |
577 { | |
578 Lisp_Object val; | |
579 register int stop; | |
580 register int c; | |
581 char stringterm; | |
582 int quoted; | |
583 int mathexit = 0; | |
584 register enum syntaxcode code; | |
585 int min_depth = depth; /* Err out if depth gets less than this. */ | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
586 int comstyle = 0; /* style of comment encountered */ |
163 | 587 |
588 if (depth > 0) min_depth = 0; | |
589 | |
590 immediate_quit = 1; | |
591 QUIT; | |
592 | |
593 while (count > 0) | |
594 { | |
595 stop = ZV; | |
596 while (from < stop) | |
597 { | |
598 c = FETCH_CHAR (from); | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
599 code = SYNTAX (c); |
163 | 600 from++; |
601 if (from < stop && SYNTAX_COMSTART_FIRST (c) | |
602 && SYNTAX_COMSTART_SECOND (FETCH_CHAR (from)) | |
603 && parse_sexp_ignore_comments) | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
604 { |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
605 /* we have encountered a comment start sequence and we |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
606 are ignoring all text inside comments. we must record |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
607 the comment style this sequence begins so that later, |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
608 only a comment end of the same style actually ends |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
609 the comment section */ |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
610 code = Scomment; |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
611 comstyle = SYNTAX_COMMENT_STYLE (FETCH_CHAR (from)); |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
612 from++; |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
613 } |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
614 |
163 | 615 if (SYNTAX_PREFIX (c)) |
616 continue; | |
617 | |
618 #ifdef SWITCH_ENUM_BUG | |
619 switch ((int) code) | |
620 #else | |
621 switch (code) | |
622 #endif | |
623 { | |
624 case Sescape: | |
625 case Scharquote: | |
626 if (from == stop) goto lose; | |
627 from++; | |
628 /* treat following character as a word constituent */ | |
629 case Sword: | |
630 case Ssymbol: | |
631 if (depth || !sexpflag) break; | |
632 /* This word counts as a sexp; return at end of it. */ | |
633 while (from < stop) | |
634 { | |
635 #ifdef SWITCH_ENUM_BUG | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
636 switch ((int) SYNTAX (FETCH_CHAR (from))) |
163 | 637 #else |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
638 switch (SYNTAX (FETCH_CHAR (from))) |
163 | 639 #endif |
640 { | |
641 case Scharquote: | |
642 case Sescape: | |
643 from++; | |
644 if (from == stop) goto lose; | |
645 break; | |
646 case Sword: | |
647 case Ssymbol: | |
648 case Squote: | |
649 break; | |
650 default: | |
651 goto done; | |
652 } | |
653 from++; | |
654 } | |
655 goto done; | |
656 | |
657 case Scomment: | |
658 if (!parse_sexp_ignore_comments) break; | |
659 while (1) | |
660 { | |
661 if (from == stop) goto done; | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
662 c = FETCH_CHAR (from); |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
663 if (SYNTAX (c) == Sendcomment |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
664 && SYNTAX_COMMENT_STYLE (c) == comstyle) |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
665 /* we have encountered a comment end of the same style |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
666 as the comment sequence which began this comment |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
667 section */ |
163 | 668 break; |
669 from++; | |
670 if (from < stop && SYNTAX_COMEND_FIRST (c) | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
671 && SYNTAX_COMEND_SECOND (FETCH_CHAR (from)) |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
672 && SYNTAX_COMMENT_STYLE (c) == comstyle) |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
673 /* we have encountered a comment end of the same style |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
674 as the comment sequence which began this comment |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
675 section */ |
163 | 676 { from++; break; } |
677 } | |
678 break; | |
679 | |
680 case Smath: | |
681 if (!sexpflag) | |
682 break; | |
683 if (from != stop && c == FETCH_CHAR (from)) | |
684 from++; | |
685 if (mathexit) | |
686 { | |
687 mathexit = 0; | |
688 goto close1; | |
689 } | |
690 mathexit = 1; | |
691 | |
692 case Sopen: | |
693 if (!++depth) goto done; | |
694 break; | |
695 | |
696 case Sclose: | |
697 close1: | |
698 if (!--depth) goto done; | |
699 if (depth < min_depth) | |
700 error ("Containing expression ends prematurely"); | |
701 break; | |
702 | |
703 case Sstring: | |
704 stringterm = FETCH_CHAR (from - 1); | |
705 while (1) | |
706 { | |
707 if (from >= stop) goto lose; | |
708 if (FETCH_CHAR (from) == stringterm) break; | |
709 #ifdef SWITCH_ENUM_BUG | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
710 switch ((int) SYNTAX (FETCH_CHAR (from))) |
163 | 711 #else |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
712 switch (SYNTAX (FETCH_CHAR (from))) |
163 | 713 #endif |
714 { | |
715 case Scharquote: | |
716 case Sescape: | |
717 from++; | |
718 } | |
719 from++; | |
720 } | |
721 from++; | |
722 if (!depth && sexpflag) goto done; | |
723 break; | |
724 } | |
725 } | |
726 | |
727 /* Reached end of buffer. Error if within object, return nil if between */ | |
728 if (depth) goto lose; | |
729 | |
730 immediate_quit = 0; | |
731 return Qnil; | |
732 | |
733 /* End of object reached */ | |
734 done: | |
735 count--; | |
736 } | |
737 | |
738 while (count < 0) | |
739 { | |
740 stop = BEGV; | |
741 while (from > stop) | |
742 { | |
743 from--; | |
744 if (quoted = char_quoted (from)) | |
745 from--; | |
746 c = FETCH_CHAR (from); | |
747 code = SYNTAX (c); | |
748 if (from > stop && SYNTAX_COMEND_SECOND (c) | |
749 && SYNTAX_COMEND_FIRST (FETCH_CHAR (from - 1)) | |
750 && !char_quoted (from - 1) | |
751 && parse_sexp_ignore_comments) | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
752 { |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
753 /* we must record the comment style encountered so that |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
754 later, we can match only the proper comment begin |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
755 sequence of the same style */ |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
756 code = Sendcomment; |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
757 comstyle = SYNTAX_COMMENT_STYLE (FETCH_CHAR (from - 1)); |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
758 from--; |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
759 } |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
760 |
163 | 761 if (SYNTAX_PREFIX (c)) |
762 continue; | |
763 | |
764 #ifdef SWITCH_ENUM_BUG | |
765 switch ((int) (quoted ? Sword : code)) | |
766 #else | |
767 switch (quoted ? Sword : code) | |
768 #endif | |
769 { | |
770 case Sword: | |
771 case Ssymbol: | |
772 if (depth || !sexpflag) break; | |
773 /* This word counts as a sexp; count object finished after passing it. */ | |
774 while (from > stop) | |
775 { | |
776 quoted = char_quoted (from - 1); | |
777 if (quoted) | |
778 from--; | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
779 if (! (quoted || SYNTAX (FETCH_CHAR (from - 1)) == Sword |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
780 || SYNTAX (FETCH_CHAR (from - 1)) == Ssymbol |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
781 || SYNTAX (FETCH_CHAR (from - 1)) == Squote)) |
163 | 782 goto done2; |
783 from--; | |
784 } | |
785 goto done2; | |
786 | |
787 case Smath: | |
788 if (!sexpflag) | |
789 break; | |
790 if (from != stop && c == FETCH_CHAR (from - 1)) | |
791 from--; | |
792 if (mathexit) | |
793 { | |
794 mathexit = 0; | |
795 goto open2; | |
796 } | |
797 mathexit = 1; | |
798 | |
799 case Sclose: | |
800 if (!++depth) goto done2; | |
801 break; | |
802 | |
803 case Sopen: | |
804 open2: | |
805 if (!--depth) goto done2; | |
806 if (depth < min_depth) | |
807 error ("Containing expression ends prematurely"); | |
808 break; | |
809 | |
810 case Sendcomment: | |
811 if (!parse_sexp_ignore_comments) | |
812 break; | |
1167
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
813 if (code != SYNTAX (c)) |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
814 /* For a two-char comment ender, we can assume |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
815 it does end a comment. So scan back in a simple way. */ |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
816 { |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
817 if (from != stop) from--; |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
818 while (1) |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
819 { |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
820 if (SYNTAX (c = FETCH_CHAR (from)) == Scomment |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
821 && SYNTAX_COMMENT_STYLE (c) == comstyle) |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
822 break; |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
823 if (from == stop) goto done; |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
824 from--; |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
825 if (SYNTAX_COMSTART_SECOND (c) |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
826 && SYNTAX_COMSTART_FIRST (FETCH_CHAR (from)) |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
827 && SYNTAX_COMMENT_STYLE (c) == comstyle |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
828 && !char_quoted (from)) |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
829 break; |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
830 } |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
831 break; |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
832 } |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
833 |
163 | 834 /* Look back, counting the parity of string-quotes, |
835 and recording the comment-starters seen. | |
836 When we reach a safe place, assume that's not in a string; | |
837 then step the main scan to the earliest comment-starter seen | |
838 an even number of string quotes away from the safe place. | |
839 | |
840 OFROM[I] is position of the earliest comment-starter seen | |
841 which is I+2X quotes from the comment-end. | |
842 PARITY is current parity of quotes from the comment end. */ | |
843 { | |
844 int parity = 0; | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
845 char my_stringend = 0; |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
846 int string_lossage = 0; |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
847 int comment_end = from; |
1167
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
848 int comstart_pos = 0; |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
849 int comstart_parity = 0; |
163 | 850 |
851 /* At beginning of range to scan, we're outside of strings; | |
852 that determines quote parity to the comment-end. */ | |
853 while (from != stop) | |
854 { | |
855 /* Move back and examine a character. */ | |
856 from--; | |
857 | |
858 c = FETCH_CHAR (from); | |
859 code = SYNTAX (c); | |
860 | |
861 /* If this char is the second of a 2-char comment sequence, | |
862 back up and give the pair the appropriate syntax. */ | |
863 if (from > stop && SYNTAX_COMEND_SECOND (c) | |
864 && SYNTAX_COMEND_FIRST (FETCH_CHAR (from - 1))) | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
865 { |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
866 code = Sendcomment; |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
867 from--; |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
868 } |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
869 |
163 | 870 else if (from > stop && SYNTAX_COMSTART_SECOND (c) |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
871 && SYNTAX_COMSTART_FIRST (FETCH_CHAR (from - 1)) |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
872 && comstyle == SYNTAX_COMMENT_STYLE (c)) |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
873 { |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
874 code = Scomment; |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
875 from--; |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
876 } |
163 | 877 |
878 /* Ignore escaped characters. */ | |
879 if (char_quoted (from)) | |
880 continue; | |
881 | |
1167
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
882 /* Track parity of quotes. */ |
163 | 883 if (code == Sstring) |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
884 { |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
885 parity ^= 1; |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
886 if (my_stringend == 0) |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
887 my_stringend = c; |
1167
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
888 /* If we have two kinds of string delimiters. |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
889 There's no way to grok this scanning backwards. */ |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
890 else if (my_stringend != c) |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
891 string_lossage = 1; |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
892 } |
163 | 893 |
894 /* Record comment-starters according to that | |
895 quote-parity to the comment-end. */ | |
896 if (code == Scomment) | |
1167
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
897 { |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
898 comstart_parity = parity; |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
899 comstart_pos = from; |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
900 } |
163 | 901 |
1167
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
902 /* If we find another earlier comment-ender, |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
903 any comment-starts earier than that don't count |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
904 (because they go with the earlier comment-ender). */ |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
905 if (code == Sendcomment |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
906 && SYNTAX_COMMENT_STYLE (FETCH_CHAR (from)) == comstyle) |
163 | 907 break; |
1167
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
908 |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
909 /* Assume a defun-start point is outside of strings. */ |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
910 if (code == Sopen |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
911 && (from == stop || FETCH_CHAR (from - 1) == '\n')) |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
912 break; |
163 | 913 } |
1167
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
914 |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
915 if (comstart_pos == 0) |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
916 from = comment_end; |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
917 /* If the earliest comment starter |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
918 is followed by uniform paired string quotes or none, |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
919 we know it can't be inside a string |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
920 since if it were then the comment ender would be inside one. |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
921 So it does start a comment. Skip back to it. */ |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
922 else if (comstart_parity == 0 && !string_lossage) |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
923 from = comstart_pos; |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
924 else |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
925 { |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
926 /* We had two kinds of string delimiters mixed up |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
927 together. Decode this going forwards. |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
928 Scan fwd from the previous comment ender |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
929 to the one in question; this records where we |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
930 last passed a comment starter. */ |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
931 struct lisp_parse_state state; |
1167
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
932 scan_sexps_forward (&state, find_defun_start (comment_end), |
a9aeeaa9da8f
(scan_lists): When searching back for comment:
Richard M. Stallman <rms@gnu.org>
parents:
1085
diff
changeset
|
933 comment_end - 1, -10000, 0, Qnil); |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
934 if (state.incomment) |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
935 from = state.comstart; |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
936 else |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
937 /* We can't grok this as a comment; scan it normally. */ |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
938 from = comment_end; |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
939 } |
163 | 940 } |
941 break; | |
942 | |
943 case Sstring: | |
944 stringterm = FETCH_CHAR (from); | |
945 while (1) | |
946 { | |
947 if (from == stop) goto lose; | |
948 if (!char_quoted (from - 1) | |
949 && stringterm == FETCH_CHAR (from - 1)) | |
950 break; | |
951 from--; | |
952 } | |
953 from--; | |
954 if (!depth && sexpflag) goto done2; | |
955 break; | |
956 } | |
957 } | |
958 | |
959 /* Reached start of buffer. Error if within object, return nil if between */ | |
960 if (depth) goto lose; | |
961 | |
962 immediate_quit = 0; | |
963 return Qnil; | |
964 | |
965 done2: | |
966 count++; | |
967 } | |
968 | |
969 | |
970 immediate_quit = 0; | |
971 XFASTINT (val) = from; | |
972 return val; | |
973 | |
974 lose: | |
975 error ("Unbalanced parentheses"); | |
976 /* NOTREACHED */ | |
977 } | |
978 | |
979 char_quoted (pos) | |
980 register int pos; | |
981 { | |
982 register enum syntaxcode code; | |
983 register int beg = BEGV; | |
984 register int quoted = 0; | |
985 | |
986 while (pos > beg | |
987 && ((code = SYNTAX (FETCH_CHAR (pos - 1))) == Scharquote | |
988 || code == Sescape)) | |
989 pos--, quoted = !quoted; | |
990 return quoted; | |
991 } | |
992 | |
993 DEFUN ("scan-lists", Fscan_lists, Sscan_lists, 3, 3, 0, | |
994 "Scan from character number FROM by COUNT lists.\n\ | |
995 Returns the character number of the position thus found.\n\ | |
996 \n\ | |
997 If DEPTH is nonzero, paren depth begins counting from that value,\n\ | |
998 only places where the depth in parentheses becomes zero\n\ | |
999 are candidates for stopping; COUNT such places are counted.\n\ | |
1000 Thus, a positive value for DEPTH means go out levels.\n\ | |
1001 \n\ | |
1002 Comments are ignored if `parse-sexp-ignore-comments' is non-nil.\n\ | |
1003 \n\ | |
1004 If the beginning or end of (the accessible part of) the buffer is reached\n\ | |
1005 and the depth is wrong, an error is signaled.\n\ | |
1006 If the depth is right but the count is not used up, nil is returned.") | |
1007 (from, count, depth) | |
1008 Lisp_Object from, count, depth; | |
1009 { | |
1010 CHECK_NUMBER (from, 0); | |
1011 CHECK_NUMBER (count, 1); | |
1012 CHECK_NUMBER (depth, 2); | |
1013 | |
1014 return scan_lists (XINT (from), XINT (count), XINT (depth), 0); | |
1015 } | |
1016 | |
1017 DEFUN ("scan-sexps", Fscan_sexps, Sscan_sexps, 2, 2, 0, | |
1018 "Scan from character number FROM by COUNT balanced expressions.\n\ | |
1019 If COUNT is negative, scan backwards.\n\ | |
1020 Returns the character number of the position thus found.\n\ | |
1021 \n\ | |
1022 Comments are ignored if `parse-sexp-ignore-comments' is non-nil.\n\ | |
1023 \n\ | |
1024 If the beginning or end of (the accessible part of) the buffer is reached\n\ | |
1025 in the middle of a parenthetical grouping, an error is signaled.\n\ | |
1026 If the beginning or end is reached between groupings\n\ | |
1027 but before count is used up, nil is returned.") | |
1028 (from, count) | |
1029 Lisp_Object from, count; | |
1030 { | |
1031 CHECK_NUMBER (from, 0); | |
1032 CHECK_NUMBER (count, 1); | |
1033 | |
1034 return scan_lists (XINT (from), XINT (count), 0, 1); | |
1035 } | |
1036 | |
1037 DEFUN ("backward-prefix-chars", Fbackward_prefix_chars, Sbackward_prefix_chars, | |
1038 0, 0, 0, | |
1039 "Move point backward over any number of chars with prefix syntax.\n\ | |
1040 This includes chars with \"quote\" or \"prefix\" syntax (' or p).") | |
1041 () | |
1042 { | |
1043 int beg = BEGV; | |
1044 int pos = point; | |
1045 | |
1046 while (pos > beg && !char_quoted (pos - 1) | |
1047 && (SYNTAX (FETCH_CHAR (pos - 1)) == Squote | |
1048 || SYNTAX_PREFIX (FETCH_CHAR (pos - 1)))) | |
1049 pos--; | |
1050 | |
1051 SET_PT (pos); | |
1052 | |
1053 return Qnil; | |
1054 } | |
1055 | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1056 /* Parse forward from FROM to END, |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1057 assuming that FROM has state OLDSTATE (nil means FROM is start of function), |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1058 and return a description of the state of the parse at END. |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1059 If STOPBEFORE is nonzero, stop at the start of an atom. */ |
163 | 1060 |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1061 scan_sexps_forward (stateptr, from, end, targetdepth, stopbefore, oldstate) |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1062 struct lisp_parse_state *stateptr; |
163 | 1063 register int from; |
1064 int end, targetdepth, stopbefore; | |
1065 Lisp_Object oldstate; | |
1066 { | |
1067 struct lisp_parse_state state; | |
1068 | |
1069 register enum syntaxcode code; | |
1070 struct level { int last, prev; }; | |
1071 struct level levelstart[100]; | |
1072 register struct level *curlevel = levelstart; | |
1073 struct level *endlevel = levelstart + 100; | |
1074 char prev; | |
1075 register int depth; /* Paren depth of current scanning location. | |
1076 level - levelstart equals this except | |
1077 when the depth becomes negative. */ | |
1078 int mindepth; /* Lowest DEPTH value seen. */ | |
1079 int start_quoted = 0; /* Nonzero means starting after a char quote */ | |
1080 Lisp_Object tem; | |
1081 | |
1082 immediate_quit = 1; | |
1083 QUIT; | |
1084 | |
485 | 1085 if (NILP (oldstate)) |
163 | 1086 { |
1087 depth = 0; | |
1088 state.instring = -1; | |
1089 state.incomment = 0; | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1090 state.comstyle = 0; /* comment style a by default */ |
163 | 1091 } |
1092 else | |
1093 { | |
1094 tem = Fcar (oldstate); | |
485 | 1095 if (!NILP (tem)) |
163 | 1096 depth = XINT (tem); |
1097 else | |
1098 depth = 0; | |
1099 | |
1100 oldstate = Fcdr (oldstate); | |
1101 oldstate = Fcdr (oldstate); | |
1102 oldstate = Fcdr (oldstate); | |
1103 tem = Fcar (oldstate); | |
485 | 1104 state.instring = !NILP (tem) ? XINT (tem) : -1; |
163 | 1105 |
1106 oldstate = Fcdr (oldstate); | |
1107 tem = Fcar (oldstate); | |
485 | 1108 state.incomment = !NILP (tem); |
163 | 1109 |
1110 oldstate = Fcdr (oldstate); | |
1111 tem = Fcar (oldstate); | |
485 | 1112 start_quoted = !NILP (tem); |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1113 |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1114 /* if the eight element of the list is nil, we are in comment |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1115 style a. if it is non-nil, we are in comment style b */ |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1116 oldstate = Fcdr (oldstate); |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1117 oldstate = Fcdr (oldstate); |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1118 oldstate = Fcdr (oldstate); |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1119 tem = Fcar (oldstate); |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1120 state.comstyle = !NILP (tem); |
163 | 1121 } |
1122 state.quoted = 0; | |
1123 mindepth = depth; | |
1124 | |
1125 curlevel->prev = -1; | |
1126 curlevel->last = -1; | |
1127 | |
1128 /* Enter the loop at a place appropriate for initial state. */ | |
1129 | |
1130 if (state.incomment) goto startincomment; | |
1131 if (state.instring >= 0) | |
1132 { | |
1133 if (start_quoted) goto startquotedinstring; | |
1134 goto startinstring; | |
1135 } | |
1136 if (start_quoted) goto startquoted; | |
1137 | |
1138 while (from < end) | |
1139 { | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1140 code = SYNTAX (FETCH_CHAR (from)); |
163 | 1141 from++; |
1142 if (from < end && SYNTAX_COMSTART_FIRST (FETCH_CHAR (from - 1)) | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1143 && SYNTAX_COMSTART_SECOND (FETCH_CHAR (from))) |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1144 { |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1145 /* Record the comment style we have entered so that only |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1146 the comment-end sequence of the same style actually |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1147 terminates the comment section. */ |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1148 code = Scomment; |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1149 state.comstyle = SYNTAX_COMMENT_STYLE (FETCH_CHAR (from)); |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1150 from++; |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1151 } |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1152 |
163 | 1153 if (SYNTAX_PREFIX (FETCH_CHAR (from - 1))) |
1154 continue; | |
1155 #ifdef SWITCH_ENUM_BUG | |
1156 switch ((int) code) | |
1157 #else | |
1158 switch (code) | |
1159 #endif | |
1160 { | |
1161 case Sescape: | |
1162 case Scharquote: | |
1163 if (stopbefore) goto stop; /* this arg means stop at sexp start */ | |
1164 curlevel->last = from - 1; | |
1165 startquoted: | |
1166 if (from == end) goto endquoted; | |
1167 from++; | |
1168 goto symstarted; | |
1169 /* treat following character as a word constituent */ | |
1170 case Sword: | |
1171 case Ssymbol: | |
1172 if (stopbefore) goto stop; /* this arg means stop at sexp start */ | |
1173 curlevel->last = from - 1; | |
1174 symstarted: | |
1175 while (from < end) | |
1176 { | |
1177 #ifdef SWITCH_ENUM_BUG | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1178 switch ((int) SYNTAX (FETCH_CHAR (from))) |
163 | 1179 #else |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1180 switch (SYNTAX (FETCH_CHAR (from))) |
163 | 1181 #endif |
1182 { | |
1183 case Scharquote: | |
1184 case Sescape: | |
1185 from++; | |
1186 if (from == end) goto endquoted; | |
1187 break; | |
1188 case Sword: | |
1189 case Ssymbol: | |
1190 case Squote: | |
1191 break; | |
1192 default: | |
1193 goto symdone; | |
1194 } | |
1195 from++; | |
1196 } | |
1197 symdone: | |
1198 curlevel->prev = curlevel->last; | |
1199 break; | |
1200 | |
1201 case Scomment: | |
1202 state.incomment = 1; | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1203 state.comstart = from; |
163 | 1204 startincomment: |
1205 while (1) | |
1206 { | |
1207 if (from == end) goto done; | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1208 prev = FETCH_CHAR (from); |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1209 if (SYNTAX (prev) == Sendcomment |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1210 && SYNTAX_COMMENT_STYLE (prev) == state.comstyle) |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1211 /* Only terminate the comment section if the endcomment |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1212 of the same style as the start sequence has been |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1213 encountered. */ |
163 | 1214 break; |
1215 from++; | |
1216 if (from < end && SYNTAX_COMEND_FIRST (prev) | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1217 && SYNTAX_COMEND_SECOND (FETCH_CHAR (from)) |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1218 && SYNTAX_COMMENT_STYLE (prev) == state.comstyle) |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1219 /* Only terminate the comment section if the end-comment |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1220 sequence of the same style as the start sequence has |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1221 been encountered. */ |
163 | 1222 { from++; break; } |
1223 } | |
1224 state.incomment = 0; | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1225 state.comstyle = 0; /* reset the comment style */ |
163 | 1226 break; |
1227 | |
1228 case Sopen: | |
1229 if (stopbefore) goto stop; /* this arg means stop at sexp start */ | |
1230 depth++; | |
1231 /* curlevel++->last ran into compiler bug on Apollo */ | |
1232 curlevel->last = from - 1; | |
1233 if (++curlevel == endlevel) | |
1234 error ("Nesting too deep for parser"); | |
1235 curlevel->prev = -1; | |
1236 curlevel->last = -1; | |
1237 if (!--targetdepth) goto done; | |
1238 break; | |
1239 | |
1240 case Sclose: | |
1241 depth--; | |
1242 if (depth < mindepth) | |
1243 mindepth = depth; | |
1244 if (curlevel != levelstart) | |
1245 curlevel--; | |
1246 curlevel->prev = curlevel->last; | |
1247 if (!++targetdepth) goto done; | |
1248 break; | |
1249 | |
1250 case Sstring: | |
1251 if (stopbefore) goto stop; /* this arg means stop at sexp start */ | |
1252 curlevel->last = from - 1; | |
1253 state.instring = FETCH_CHAR (from - 1); | |
1254 startinstring: | |
1255 while (1) | |
1256 { | |
1257 if (from >= end) goto done; | |
1258 if (FETCH_CHAR (from) == state.instring) break; | |
1259 #ifdef SWITCH_ENUM_BUG | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1260 switch ((int) SYNTAX (FETCH_CHAR (from))) |
163 | 1261 #else |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1262 switch (SYNTAX (FETCH_CHAR (from))) |
163 | 1263 #endif |
1264 { | |
1265 case Scharquote: | |
1266 case Sescape: | |
1267 from++; | |
1268 startquotedinstring: | |
1269 if (from >= end) goto endquoted; | |
1270 } | |
1271 from++; | |
1272 } | |
1273 state.instring = -1; | |
1274 curlevel->prev = curlevel->last; | |
1275 from++; | |
1276 break; | |
1277 | |
1278 case Smath: | |
1279 break; | |
1280 } | |
1281 } | |
1282 goto done; | |
1283 | |
1284 stop: /* Here if stopping before start of sexp. */ | |
1285 from--; /* We have just fetched the char that starts it; */ | |
1286 goto done; /* but return the position before it. */ | |
1287 | |
1288 endquoted: | |
1289 state.quoted = 1; | |
1290 done: | |
1291 state.depth = depth; | |
1292 state.mindepth = mindepth; | |
1293 state.thislevelstart = curlevel->prev; | |
1294 state.prevlevelstart | |
1295 = (curlevel == levelstart) ? -1 : (curlevel - 1)->last; | |
1296 state.location = from; | |
1297 immediate_quit = 0; | |
1298 | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1299 *stateptr = state; |
163 | 1300 } |
1301 | |
1302 /* This comment supplies the doc string for parse-partial-sexp, | |
1303 for make-docfile to see. We cannot put this in the real DEFUN | |
1304 due to limits in the Unix cpp. | |
1305 | |
726 | 1306 DEFUN ("parse-partial-sexp", Ffoo, Sfoo, 2, 5, 0, |
163 | 1307 "Parse Lisp syntax starting at FROM until TO; return status of parse at TO.\n\ |
1308 Parsing stops at TO or when certain criteria are met;\n\ | |
1309 point is set to where parsing stops.\n\ | |
1310 If fifth arg STATE is omitted or nil,\n\ | |
1311 parsing assumes that FROM is the beginning of a function.\n\ | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1312 Value is a list of eight elements describing final state of parsing:\n\ |
163 | 1313 1. depth in parens.\n\ |
1314 2. character address of start of innermost containing list; nil if none.\n\ | |
1315 3. character address of start of last complete sexp terminated.\n\ | |
1316 4. non-nil if inside a string.\n\ | |
1317 (it is the character that will terminate the string.)\n\ | |
1318 5. t if inside a comment.\n\ | |
1319 6. t if following a quote character.\n\ | |
1320 7. the minimum paren-depth encountered during this scan.\n\ | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1321 8. t if in a comment of style `b'.\n\ |
163 | 1322 If third arg TARGETDEPTH is non-nil, parsing stops if the depth\n\ |
1323 in parentheses becomes equal to TARGETDEPTH.\n\ | |
1324 Fourth arg STOPBEFORE non-nil means stop when come to\n\ | |
1325 any character that starts a sexp.\n\ | |
1326 Fifth arg STATE is a seven-list like what this function returns.\n\ | |
726 | 1327 It is used to initialize the state of the parse. Its second and third |
1328 elements are ignored.") | |
1329 (from, to, targetdepth, stopbefore, state) | |
163 | 1330 */ |
1331 | |
1332 DEFUN ("parse-partial-sexp", Fparse_partial_sexp, Sparse_partial_sexp, 2, 5, 0, | |
1333 0 /* See immediately above */) | |
1334 (from, to, targetdepth, stopbefore, oldstate) | |
1335 Lisp_Object from, to, targetdepth, stopbefore, oldstate; | |
1336 { | |
1337 struct lisp_parse_state state; | |
1338 int target; | |
1339 | |
485 | 1340 if (!NILP (targetdepth)) |
163 | 1341 { |
1342 CHECK_NUMBER (targetdepth, 3); | |
1343 target = XINT (targetdepth); | |
1344 } | |
1345 else | |
1346 target = -100000; /* We won't reach this depth */ | |
1347 | |
1348 validate_region (&from, &to); | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1349 scan_sexps_forward (&state, XINT (from), XINT (to), |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1350 target, !NILP (stopbefore), oldstate); |
163 | 1351 |
1352 SET_PT (state.location); | |
1353 | |
1354 return Fcons (make_number (state.depth), | |
1355 Fcons (state.prevlevelstart < 0 ? Qnil : make_number (state.prevlevelstart), | |
1356 Fcons (state.thislevelstart < 0 ? Qnil : make_number (state.thislevelstart), | |
1357 Fcons (state.instring >= 0 ? make_number (state.instring) : Qnil, | |
1358 Fcons (state.incomment ? Qt : Qnil, | |
1359 Fcons (state.quoted ? Qt : Qnil, | |
1085
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1360 Fcons (make_number (state.mindepth), |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1361 Fcons (state.comstyle ? Qt : Qnil, |
91a456e52db1
(scan_lists): Improve smarts for backwards scan of comments.
Richard M. Stallman <rms@gnu.org>
parents:
726
diff
changeset
|
1362 Qnil)))))))); |
163 | 1363 } |
1364 | |
1365 init_syntax_once () | |
1366 { | |
1367 register int i; | |
1368 register struct Lisp_Vector *v; | |
1369 | |
1370 /* Set this now, so first buffer creation can refer to it. */ | |
1371 /* Make it nil before calling copy-syntax-table | |
1372 so that copy-syntax-table will know not to try to copy from garbage */ | |
1373 Vstandard_syntax_table = Qnil; | |
1374 Vstandard_syntax_table = Fcopy_syntax_table (Qnil); | |
1375 | |
1376 v = XVECTOR (Vstandard_syntax_table); | |
1377 | |
1378 for (i = 'a'; i <= 'z'; i++) | |
1379 XFASTINT (v->contents[i]) = (int) Sword; | |
1380 for (i = 'A'; i <= 'Z'; i++) | |
1381 XFASTINT (v->contents[i]) = (int) Sword; | |
1382 for (i = '0'; i <= '9'; i++) | |
1383 XFASTINT (v->contents[i]) = (int) Sword; | |
1384 XFASTINT (v->contents['$']) = (int) Sword; | |
1385 XFASTINT (v->contents['%']) = (int) Sword; | |
1386 | |
1387 XFASTINT (v->contents['(']) = (int) Sopen + (')' << 8); | |
1388 XFASTINT (v->contents[')']) = (int) Sclose + ('(' << 8); | |
1389 XFASTINT (v->contents['[']) = (int) Sopen + (']' << 8); | |
1390 XFASTINT (v->contents[']']) = (int) Sclose + ('[' << 8); | |
1391 XFASTINT (v->contents['{']) = (int) Sopen + ('}' << 8); | |
1392 XFASTINT (v->contents['}']) = (int) Sclose + ('{' << 8); | |
1393 XFASTINT (v->contents['"']) = (int) Sstring; | |
1394 XFASTINT (v->contents['\\']) = (int) Sescape; | |
1395 | |
1396 for (i = 0; i < 10; i++) | |
1397 XFASTINT (v->contents["_-+*/&|<>="[i]]) = (int) Ssymbol; | |
1398 | |
1399 for (i = 0; i < 12; i++) | |
1400 XFASTINT (v->contents[".,;:?!#@~^'`"[i]]) = (int) Spunct; | |
1401 } | |
1402 | |
1403 syms_of_syntax () | |
1404 { | |
1405 Qsyntax_table_p = intern ("syntax-table-p"); | |
1406 staticpro (&Qsyntax_table_p); | |
1407 | |
1408 DEFVAR_BOOL ("parse-sexp-ignore-comments", &parse_sexp_ignore_comments, | |
1409 "Non-nil means `forward-sexp', etc., should treat comments as whitespace."); | |
1410 | |
1411 words_include_escapes = 0; | |
1412 DEFVAR_BOOL ("words-include-escapes", &words_include_escapes, | |
1413 "Non-nil means `forward-word', etc., should treat escape chars part of words."); | |
1414 | |
1415 defsubr (&Ssyntax_table_p); | |
1416 defsubr (&Ssyntax_table); | |
1417 defsubr (&Sstandard_syntax_table); | |
1418 defsubr (&Scopy_syntax_table); | |
1419 defsubr (&Sset_syntax_table); | |
1420 defsubr (&Schar_syntax); | |
1421 defsubr (&Smodify_syntax_entry); | |
1422 defsubr (&Sdescribe_syntax); | |
1423 | |
1424 defsubr (&Sforward_word); | |
1425 | |
1426 defsubr (&Sscan_lists); | |
1427 defsubr (&Sscan_sexps); | |
1428 defsubr (&Sbackward_prefix_chars); | |
1429 defsubr (&Sparse_partial_sexp); | |
1430 } |