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