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