annotate src/syntax.c @ 16:0293115a14e9 r19-15b91

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