Mercurial > emacs
annotate src/syntax.h @ 63576:7c3d537469b0
(grep-regexp-alist): Use backreference at the
end of first regexp to limit the match to the position between
line number and source line with same separator character as used
between file name and line number. In the second regexp limit
mouse-face area to file name and line number by adding new group
for them and referring it in HYPERLINK arg.
(grep-regexp-alist, grep-mode-font-lock-keywords): Use shy group.
(grep-mode): Set font-lock-lines-before to 0 to not refontify the
previous line where grep markers may be already removed.
author | Juri Linkov <juri@jurta.org> |
---|---|
date | Sat, 18 Jun 2005 12:56:14 +0000 |
parents | f6fab60742ca |
children | a8fa7c632ee4 4c90ffeb71c5 |
rev | line source |
---|---|
486 | 1 /* Declarations having to do with GNU Emacs syntax tables. |
20708 | 2 Copyright (C) 1985, 93, 94, 97, 1998 Free Software Foundation, Inc. |
486 | 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 | |
12244 | 8 the Free Software Foundation; either version 2, or (at your option) |
486 | 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 | |
14186
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
13827
diff
changeset
|
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
13827
diff
changeset
|
19 Boston, MA 02111-1307, USA. */ |
486 | 20 |
21 | |
22 extern Lisp_Object Qsyntax_table_p; | |
20349 | 23 extern void update_syntax_table P_ ((int, int, int, Lisp_Object)); |
486 | 24 |
25 /* The standard syntax table is stored where it will automatically | |
26 be used in all new buffers. */ | |
27 #define Vstandard_syntax_table buffer_defaults.syntax_table | |
28 | |
13143
ba670977cceb
Use char tables as syntax tables.
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
29 /* A syntax table is a chartable whose elements are cons cells |
ba670977cceb
Use char tables as syntax tables.
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
30 (CODE+FLAGS . MATCHING-CHAR). MATCHING-CHAR can be nil if the char |
ba670977cceb
Use char tables as syntax tables.
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
31 is not a kind of parenthesis. |
486 | 32 |
13143
ba670977cceb
Use char tables as syntax tables.
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
33 The low 8 bits of CODE+FLAGS is a code, as follows: */ |
486 | 34 |
35 enum syntaxcode | |
36 { | |
37 Swhitespace, /* for a whitespace character */ | |
38 Spunct, /* for random punctuation characters */ | |
39 Sword, /* for a word constituent */ | |
40 Ssymbol, /* symbol constituent but not word constituent */ | |
41 Sopen, /* for a beginning delimiter */ | |
42 Sclose, /* for an ending delimiter */ | |
43 Squote, /* for a prefix character like Lisp ' */ | |
44 Sstring, /* for a string-grouping character like Lisp " */ | |
17465
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
45 Smath, /* for delimiters like $ in Tex. */ |
486 | 46 Sescape, /* for a character that begins a C-style escape */ |
47 Scharquote, /* for a character that quotes the following character */ | |
48 Scomment, /* for a comment-starting character */ | |
49 Sendcomment, /* for a comment-ending character */ | |
5441
0af9674da850
(enum syntaxcode): Add Sinherit.
Richard M. Stallman <rms@gnu.org>
parents:
2961
diff
changeset
|
50 Sinherit, /* use the standard syntax table for this character */ |
17465
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
51 Scomment_fence, /* Starts/ends comment which is delimited on the |
20487 | 52 other side by any char with the same syntaxcode. */ |
17465
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
53 Sstring_fence, /* Starts/ends string which is delimited on the |
20487 | 54 other side by any char with the same syntaxcode. */ |
486 | 55 Smax /* Upper bound on codes that are meaningful */ |
56 }; | |
57 | |
17045
1dfa84b25d3b
(SET_RAW_SYNTAX_ENTRY): Handle syntax of multibyte
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
58 /* Set the syntax entry VAL for char C in table TABLE. */ |
13143
ba670977cceb
Use char tables as syntax tables.
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
59 |
17127
ab43d13fdfd5
(SET_RAW_SYNTAX_ENTRY, SYNTAX_ENTRY): Cast arg C to
Kenichi Handa <handa@m17n.org>
parents:
17045
diff
changeset
|
60 #define SET_RAW_SYNTAX_ENTRY(table, c, val) \ |
55319
75e1ea70fb3d
(SET_RAW_SYNTAX_ENTRY, SYNTAX_ENTRY_INT): Avoid
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
61 ((((c) & 0xFF) == (c)) \ |
17127
ab43d13fdfd5
(SET_RAW_SYNTAX_ENTRY, SYNTAX_ENTRY): Cast arg C to
Kenichi Handa <handa@m17n.org>
parents:
17045
diff
changeset
|
62 ? (XCHAR_TABLE (table)->contents[(unsigned char) (c)] = (val)) \ |
ab43d13fdfd5
(SET_RAW_SYNTAX_ENTRY, SYNTAX_ENTRY): Cast arg C to
Kenichi Handa <handa@m17n.org>
parents:
17045
diff
changeset
|
63 : Faset ((table), make_number (c), (val))) |
486 | 64 |
17045
1dfa84b25d3b
(SET_RAW_SYNTAX_ENTRY): Handle syntax of multibyte
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
65 /* Fetch the syntax entry for char C in syntax table TABLE. |
1dfa84b25d3b
(SET_RAW_SYNTAX_ENTRY): Handle syntax of multibyte
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
66 This macro is called only when C is less than CHAR_TABLE_ORDINARY_SLOTS. |
1dfa84b25d3b
(SET_RAW_SYNTAX_ENTRY): Handle syntax of multibyte
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
67 Do inheritance. */ |
5441
0af9674da850
(enum syntaxcode): Add Sinherit.
Richard M. Stallman <rms@gnu.org>
parents:
2961
diff
changeset
|
68 |
0af9674da850
(enum syntaxcode): Add Sinherit.
Richard M. Stallman <rms@gnu.org>
parents:
2961
diff
changeset
|
69 #ifdef __GNUC__ |
17045
1dfa84b25d3b
(SET_RAW_SYNTAX_ENTRY): Handle syntax of multibyte
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
70 #define SYNTAX_ENTRY_FOLLOW_PARENT(table, c) \ |
56068
f6fab60742ca
(SYNTAX_ENTRY_FOLLOW_PARENT): Rename local variable to
Andreas Schwab <schwab@suse.de>
parents:
55319
diff
changeset
|
71 ({ Lisp_Object _syntax_tbl = (table); \ |
f6fab60742ca
(SYNTAX_ENTRY_FOLLOW_PARENT): Rename local variable to
Andreas Schwab <schwab@suse.de>
parents:
55319
diff
changeset
|
72 Lisp_Object _syntax_temp = XCHAR_TABLE (_syntax_tbl)->contents[(c)]; \ |
f6fab60742ca
(SYNTAX_ENTRY_FOLLOW_PARENT): Rename local variable to
Andreas Schwab <schwab@suse.de>
parents:
55319
diff
changeset
|
73 while (NILP (_syntax_temp)) \ |
17045
1dfa84b25d3b
(SET_RAW_SYNTAX_ENTRY): Handle syntax of multibyte
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
74 { \ |
56068
f6fab60742ca
(SYNTAX_ENTRY_FOLLOW_PARENT): Rename local variable to
Andreas Schwab <schwab@suse.de>
parents:
55319
diff
changeset
|
75 _syntax_tbl = XCHAR_TABLE (_syntax_tbl)->parent; \ |
f6fab60742ca
(SYNTAX_ENTRY_FOLLOW_PARENT): Rename local variable to
Andreas Schwab <schwab@suse.de>
parents:
55319
diff
changeset
|
76 if (NILP (_syntax_tbl)) \ |
17045
1dfa84b25d3b
(SET_RAW_SYNTAX_ENTRY): Handle syntax of multibyte
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
77 break; \ |
56068
f6fab60742ca
(SYNTAX_ENTRY_FOLLOW_PARENT): Rename local variable to
Andreas Schwab <schwab@suse.de>
parents:
55319
diff
changeset
|
78 _syntax_temp = XCHAR_TABLE (_syntax_tbl)->contents[(c)]; \ |
17045
1dfa84b25d3b
(SET_RAW_SYNTAX_ENTRY): Handle syntax of multibyte
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
79 } \ |
56068
f6fab60742ca
(SYNTAX_ENTRY_FOLLOW_PARENT): Rename local variable to
Andreas Schwab <schwab@suse.de>
parents:
55319
diff
changeset
|
80 _syntax_temp; }) |
17045
1dfa84b25d3b
(SET_RAW_SYNTAX_ENTRY): Handle syntax of multibyte
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
81 #else |
1dfa84b25d3b
(SET_RAW_SYNTAX_ENTRY): Handle syntax of multibyte
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
82 extern Lisp_Object syntax_temp; |
20349 | 83 extern Lisp_Object syntax_parent_lookup P_ ((Lisp_Object, int)); |
13143
ba670977cceb
Use char tables as syntax tables.
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
84 |
17045
1dfa84b25d3b
(SET_RAW_SYNTAX_ENTRY): Handle syntax of multibyte
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
85 #define SYNTAX_ENTRY_FOLLOW_PARENT(table, c) \ |
1dfa84b25d3b
(SET_RAW_SYNTAX_ENTRY): Handle syntax of multibyte
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
86 (syntax_temp = XCHAR_TABLE (table)->contents[(c)], \ |
1dfa84b25d3b
(SET_RAW_SYNTAX_ENTRY): Handle syntax of multibyte
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
87 (NILP (syntax_temp) \ |
1dfa84b25d3b
(SET_RAW_SYNTAX_ENTRY): Handle syntax of multibyte
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
88 ? syntax_parent_lookup (table, (c)) \ |
1dfa84b25d3b
(SET_RAW_SYNTAX_ENTRY): Handle syntax of multibyte
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
89 : syntax_temp)) |
1dfa84b25d3b
(SET_RAW_SYNTAX_ENTRY): Handle syntax of multibyte
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
90 #endif |
1dfa84b25d3b
(SET_RAW_SYNTAX_ENTRY): Handle syntax of multibyte
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
91 |
17465
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
92 /* SYNTAX_ENTRY fetches the information from the entry for character C |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46370
diff
changeset
|
93 in syntax table TABLE, or from globally kept data (gl_state). |
17465
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
94 Does inheritance. */ |
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
95 /* CURRENT_SYNTAX_TABLE gives the syntax table valid for current |
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
96 position, it is either the buffer's syntax table, or syntax table |
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
97 found in text properties. */ |
17045
1dfa84b25d3b
(SET_RAW_SYNTAX_ENTRY): Handle syntax of multibyte
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
98 |
17465
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
99 #ifdef SYNTAX_ENTRY_VIA_PROPERTY |
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
100 # define SYNTAX_ENTRY(c) \ |
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
101 (gl_state.use_global ? gl_state.global_code : SYNTAX_ENTRY_INT (c)) |
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
102 # define CURRENT_SYNTAX_TABLE gl_state.current_syntax_table |
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
103 #else |
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
104 # define SYNTAX_ENTRY SYNTAX_ENTRY_INT |
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
105 # define CURRENT_SYNTAX_TABLE current_buffer->syntax_table |
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
106 #endif |
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
107 |
26870
9ecd0716cf8a
(SYNTAX_ENTRY_INT): Delete codes for a composite
Kenichi Handa <handa@m17n.org>
parents:
25640
diff
changeset
|
108 #define SYNTAX_ENTRY_INT(c) \ |
55319
75e1ea70fb3d
(SET_RAW_SYNTAX_ENTRY, SYNTAX_ENTRY_INT): Avoid
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
109 ((((c) & 0xFF) == (c)) \ |
26870
9ecd0716cf8a
(SYNTAX_ENTRY_INT): Delete codes for a composite
Kenichi Handa <handa@m17n.org>
parents:
25640
diff
changeset
|
110 ? SYNTAX_ENTRY_FOLLOW_PARENT (CURRENT_SYNTAX_TABLE, \ |
9ecd0716cf8a
(SYNTAX_ENTRY_INT): Delete codes for a composite
Kenichi Handa <handa@m17n.org>
parents:
25640
diff
changeset
|
111 (unsigned char) (c)) \ |
9ecd0716cf8a
(SYNTAX_ENTRY_INT): Delete codes for a composite
Kenichi Handa <handa@m17n.org>
parents:
25640
diff
changeset
|
112 : Faref (CURRENT_SYNTAX_TABLE, \ |
9ecd0716cf8a
(SYNTAX_ENTRY_INT): Delete codes for a composite
Kenichi Handa <handa@m17n.org>
parents:
25640
diff
changeset
|
113 make_number (c))) |
17045
1dfa84b25d3b
(SET_RAW_SYNTAX_ENTRY): Handle syntax of multibyte
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
114 |
1dfa84b25d3b
(SET_RAW_SYNTAX_ENTRY): Handle syntax of multibyte
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
115 /* Extract the information from the entry for character C |
1dfa84b25d3b
(SET_RAW_SYNTAX_ENTRY): Handle syntax of multibyte
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
116 in the current syntax table. */ |
1dfa84b25d3b
(SET_RAW_SYNTAX_ENTRY): Handle syntax of multibyte
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
117 |
1dfa84b25d3b
(SET_RAW_SYNTAX_ENTRY): Handle syntax of multibyte
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
118 #ifdef __GNUC__ |
13143
ba670977cceb
Use char tables as syntax tables.
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
119 #define SYNTAX(c) \ |
56068
f6fab60742ca
(SYNTAX_ENTRY_FOLLOW_PARENT): Rename local variable to
Andreas Schwab <schwab@suse.de>
parents:
55319
diff
changeset
|
120 ({ Lisp_Object _syntax_temp; \ |
f6fab60742ca
(SYNTAX_ENTRY_FOLLOW_PARENT): Rename local variable to
Andreas Schwab <schwab@suse.de>
parents:
55319
diff
changeset
|
121 _syntax_temp = SYNTAX_ENTRY (c); \ |
f6fab60742ca
(SYNTAX_ENTRY_FOLLOW_PARENT): Rename local variable to
Andreas Schwab <schwab@suse.de>
parents:
55319
diff
changeset
|
122 (CONSP (_syntax_temp) \ |
f6fab60742ca
(SYNTAX_ENTRY_FOLLOW_PARENT): Rename local variable to
Andreas Schwab <schwab@suse.de>
parents:
55319
diff
changeset
|
123 ? (enum syntaxcode) (XINT (XCAR (_syntax_temp)) & 0xff) \ |
17045
1dfa84b25d3b
(SET_RAW_SYNTAX_ENTRY): Handle syntax of multibyte
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
124 : Swhitespace); }) |
13143
ba670977cceb
Use char tables as syntax tables.
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
125 |
ba670977cceb
Use char tables as syntax tables.
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
126 #define SYNTAX_WITH_FLAGS(c) \ |
56068
f6fab60742ca
(SYNTAX_ENTRY_FOLLOW_PARENT): Rename local variable to
Andreas Schwab <schwab@suse.de>
parents:
55319
diff
changeset
|
127 ({ Lisp_Object _syntax_temp; \ |
f6fab60742ca
(SYNTAX_ENTRY_FOLLOW_PARENT): Rename local variable to
Andreas Schwab <schwab@suse.de>
parents:
55319
diff
changeset
|
128 _syntax_temp = SYNTAX_ENTRY (c); \ |
f6fab60742ca
(SYNTAX_ENTRY_FOLLOW_PARENT): Rename local variable to
Andreas Schwab <schwab@suse.de>
parents:
55319
diff
changeset
|
129 (CONSP (_syntax_temp) \ |
f6fab60742ca
(SYNTAX_ENTRY_FOLLOW_PARENT): Rename local variable to
Andreas Schwab <schwab@suse.de>
parents:
55319
diff
changeset
|
130 ? XINT (XCAR (_syntax_temp)) \ |
17045
1dfa84b25d3b
(SET_RAW_SYNTAX_ENTRY): Handle syntax of multibyte
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
131 : (int) Swhitespace); }) |
13143
ba670977cceb
Use char tables as syntax tables.
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
132 |
ba670977cceb
Use char tables as syntax tables.
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
133 #define SYNTAX_MATCH(c) \ |
56068
f6fab60742ca
(SYNTAX_ENTRY_FOLLOW_PARENT): Rename local variable to
Andreas Schwab <schwab@suse.de>
parents:
55319
diff
changeset
|
134 ({ Lisp_Object _syntax_temp; \ |
f6fab60742ca
(SYNTAX_ENTRY_FOLLOW_PARENT): Rename local variable to
Andreas Schwab <schwab@suse.de>
parents:
55319
diff
changeset
|
135 _syntax_temp = SYNTAX_ENTRY (c); \ |
f6fab60742ca
(SYNTAX_ENTRY_FOLLOW_PARENT): Rename local variable to
Andreas Schwab <schwab@suse.de>
parents:
55319
diff
changeset
|
136 (CONSP (_syntax_temp) \ |
f6fab60742ca
(SYNTAX_ENTRY_FOLLOW_PARENT): Rename local variable to
Andreas Schwab <schwab@suse.de>
parents:
55319
diff
changeset
|
137 ? XCDR (_syntax_temp) \ |
17045
1dfa84b25d3b
(SET_RAW_SYNTAX_ENTRY): Handle syntax of multibyte
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
138 : Qnil); }) |
5441
0af9674da850
(enum syntaxcode): Add Sinherit.
Richard M. Stallman <rms@gnu.org>
parents:
2961
diff
changeset
|
139 #else |
13143
ba670977cceb
Use char tables as syntax tables.
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
140 #define SYNTAX(c) \ |
13318
94a4b6e9d310
(SYNTAX, SYNTAX_WITH_FLAGS, SYNTAX_MATCH): Fix the non-GCC definitions.
Richard M. Stallman <rms@gnu.org>
parents:
13143
diff
changeset
|
141 (syntax_temp = SYNTAX_ENTRY ((c)), \ |
13143
ba670977cceb
Use char tables as syntax tables.
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
142 (CONSP (syntax_temp) \ |
25640 | 143 ? (enum syntaxcode) (XINT (XCAR (syntax_temp)) & 0xff) \ |
17045
1dfa84b25d3b
(SET_RAW_SYNTAX_ENTRY): Handle syntax of multibyte
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
144 : Swhitespace)) |
13143
ba670977cceb
Use char tables as syntax tables.
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
145 |
ba670977cceb
Use char tables as syntax tables.
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
146 #define SYNTAX_WITH_FLAGS(c) \ |
13318
94a4b6e9d310
(SYNTAX, SYNTAX_WITH_FLAGS, SYNTAX_MATCH): Fix the non-GCC definitions.
Richard M. Stallman <rms@gnu.org>
parents:
13143
diff
changeset
|
147 (syntax_temp = SYNTAX_ENTRY ((c)), \ |
13143
ba670977cceb
Use char tables as syntax tables.
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
148 (CONSP (syntax_temp) \ |
25640 | 149 ? XINT (XCAR (syntax_temp)) \ |
17045
1dfa84b25d3b
(SET_RAW_SYNTAX_ENTRY): Handle syntax of multibyte
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
150 : (int) Swhitespace)) |
13143
ba670977cceb
Use char tables as syntax tables.
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
151 |
ba670977cceb
Use char tables as syntax tables.
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
152 #define SYNTAX_MATCH(c) \ |
13318
94a4b6e9d310
(SYNTAX, SYNTAX_WITH_FLAGS, SYNTAX_MATCH): Fix the non-GCC definitions.
Richard M. Stallman <rms@gnu.org>
parents:
13143
diff
changeset
|
153 (syntax_temp = SYNTAX_ENTRY ((c)), \ |
13143
ba670977cceb
Use char tables as syntax tables.
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
154 (CONSP (syntax_temp) \ |
25640 | 155 ? XCDR (syntax_temp) \ |
17045
1dfa84b25d3b
(SET_RAW_SYNTAX_ENTRY): Handle syntax of multibyte
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
156 : Qnil)) |
5441
0af9674da850
(enum syntaxcode): Add Sinherit.
Richard M. Stallman <rms@gnu.org>
parents:
2961
diff
changeset
|
157 #endif |
486 | 158 |
25446
2a2d7ebaa018
(SYNTAX_COMMENT_NESTED, SYNTAX_FLAGS_COMMENT_NESTED):
Richard M. Stallman <rms@gnu.org>
parents:
23713
diff
changeset
|
159 /* Then there are seven single-bit flags that have the following meanings: |
486 | 160 1. This character is the first of a two-character comment-start sequence. |
161 2. This character is the second of a two-character comment-start sequence. | |
162 3. This character is the first of a two-character comment-end sequence. | |
163 4. This character is the second of a two-character comment-end sequence. | |
164 5. This character is a prefix, for backward-prefix-chars. | |
25446
2a2d7ebaa018
(SYNTAX_COMMENT_NESTED, SYNTAX_FLAGS_COMMENT_NESTED):
Richard M. Stallman <rms@gnu.org>
parents:
23713
diff
changeset
|
165 6. see below |
2a2d7ebaa018
(SYNTAX_COMMENT_NESTED, SYNTAX_FLAGS_COMMENT_NESTED):
Richard M. Stallman <rms@gnu.org>
parents:
23713
diff
changeset
|
166 7. This character is part of a nestable comment sequence. |
1073 | 167 Note that any two-character sequence whose first character has flag 1 |
168 and whose second character has flag 2 will be interpreted as a comment start. | |
169 | |
170 bit 6 is used to discriminate between two different comment styles. | |
171 Languages such as C++ allow two orthogonal syntax start/end pairs | |
172 and bit 6 is used to determine whether a comment-end or Scommentend | |
17465
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
173 ends style a or b. Comment start sequences can start style a or b. |
1073 | 174 Style a is always the default. |
175 */ | |
486 | 176 |
21206
dac44ee5f772
(SYNTAX_FLAGS_COMSTART_FIRST): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
21015
diff
changeset
|
177 /* These macros extract a particular flag for a given character. */ |
dac44ee5f772
(SYNTAX_FLAGS_COMSTART_FIRST): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
21015
diff
changeset
|
178 |
13143
ba670977cceb
Use char tables as syntax tables.
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
179 #define SYNTAX_COMSTART_FIRST(c) ((SYNTAX_WITH_FLAGS (c) >> 16) & 1) |
5441
0af9674da850
(enum syntaxcode): Add Sinherit.
Richard M. Stallman <rms@gnu.org>
parents:
2961
diff
changeset
|
180 |
13143
ba670977cceb
Use char tables as syntax tables.
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
181 #define SYNTAX_COMSTART_SECOND(c) ((SYNTAX_WITH_FLAGS (c) >> 17) & 1) |
486 | 182 |
13143
ba670977cceb
Use char tables as syntax tables.
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
183 #define SYNTAX_COMEND_FIRST(c) ((SYNTAX_WITH_FLAGS (c) >> 18) & 1) |
486 | 184 |
13143
ba670977cceb
Use char tables as syntax tables.
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
185 #define SYNTAX_COMEND_SECOND(c) ((SYNTAX_WITH_FLAGS (c) >> 19) & 1) |
486 | 186 |
13143
ba670977cceb
Use char tables as syntax tables.
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
187 #define SYNTAX_PREFIX(c) ((SYNTAX_WITH_FLAGS (c) >> 20) & 1) |
486 | 188 |
13143
ba670977cceb
Use char tables as syntax tables.
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
189 #define SYNTAX_COMMENT_STYLE(c) ((SYNTAX_WITH_FLAGS (c) >> 21) & 1) |
1073 | 190 |
25446
2a2d7ebaa018
(SYNTAX_COMMENT_NESTED, SYNTAX_FLAGS_COMMENT_NESTED):
Richard M. Stallman <rms@gnu.org>
parents:
23713
diff
changeset
|
191 #define SYNTAX_COMMENT_NESTED(c) ((SYNTAX_WITH_FLAGS (c) >> 22) & 1) |
2a2d7ebaa018
(SYNTAX_COMMENT_NESTED, SYNTAX_FLAGS_COMMENT_NESTED):
Richard M. Stallman <rms@gnu.org>
parents:
23713
diff
changeset
|
192 |
21206
dac44ee5f772
(SYNTAX_FLAGS_COMSTART_FIRST): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
21015
diff
changeset
|
193 /* These macros extract specific flags from an integer |
dac44ee5f772
(SYNTAX_FLAGS_COMSTART_FIRST): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
21015
diff
changeset
|
194 that holds the syntax code and the flags. */ |
dac44ee5f772
(SYNTAX_FLAGS_COMSTART_FIRST): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
21015
diff
changeset
|
195 |
dac44ee5f772
(SYNTAX_FLAGS_COMSTART_FIRST): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
21015
diff
changeset
|
196 #define SYNTAX_FLAGS_COMSTART_FIRST(flags) (((flags) >> 16) & 1) |
dac44ee5f772
(SYNTAX_FLAGS_COMSTART_FIRST): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
21015
diff
changeset
|
197 |
dac44ee5f772
(SYNTAX_FLAGS_COMSTART_FIRST): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
21015
diff
changeset
|
198 #define SYNTAX_FLAGS_COMSTART_SECOND(flags) (((flags) >> 17) & 1) |
dac44ee5f772
(SYNTAX_FLAGS_COMSTART_FIRST): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
21015
diff
changeset
|
199 |
dac44ee5f772
(SYNTAX_FLAGS_COMSTART_FIRST): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
21015
diff
changeset
|
200 #define SYNTAX_FLAGS_COMEND_FIRST(flags) (((flags) >> 18) & 1) |
dac44ee5f772
(SYNTAX_FLAGS_COMSTART_FIRST): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
21015
diff
changeset
|
201 |
dac44ee5f772
(SYNTAX_FLAGS_COMSTART_FIRST): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
21015
diff
changeset
|
202 #define SYNTAX_FLAGS_COMEND_SECOND(flags) (((flags) >> 19) & 1) |
dac44ee5f772
(SYNTAX_FLAGS_COMSTART_FIRST): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
21015
diff
changeset
|
203 |
dac44ee5f772
(SYNTAX_FLAGS_COMSTART_FIRST): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
21015
diff
changeset
|
204 #define SYNTAX_FLAGS_PREFIX(flags) (((flags) >> 20) & 1) |
dac44ee5f772
(SYNTAX_FLAGS_COMSTART_FIRST): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
21015
diff
changeset
|
205 |
dac44ee5f772
(SYNTAX_FLAGS_COMSTART_FIRST): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
21015
diff
changeset
|
206 #define SYNTAX_FLAGS_COMMENT_STYLE(flags) (((flags) >> 21) & 1) |
dac44ee5f772
(SYNTAX_FLAGS_COMSTART_FIRST): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
21015
diff
changeset
|
207 |
25446
2a2d7ebaa018
(SYNTAX_COMMENT_NESTED, SYNTAX_FLAGS_COMMENT_NESTED):
Richard M. Stallman <rms@gnu.org>
parents:
23713
diff
changeset
|
208 #define SYNTAX_FLAGS_COMMENT_NESTED(flags) (((flags) >> 22) & 1) |
2a2d7ebaa018
(SYNTAX_COMMENT_NESTED, SYNTAX_FLAGS_COMMENT_NESTED):
Richard M. Stallman <rms@gnu.org>
parents:
23713
diff
changeset
|
209 |
486 | 210 /* This array, indexed by a character, contains the syntax code which that |
211 character signifies (as a char). For example, | |
17465
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
212 (enum syntaxcode) syntax_spec_code['w'] is Sword. */ |
486 | 213 |
214 extern unsigned char syntax_spec_code[0400]; | |
215 | |
17465
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
216 /* Indexed by syntax code, give the letter that describes it. */ |
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
217 |
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
218 extern char syntax_code_spec[16]; |
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
219 |
20649
388cedeebb88
(SYNTAX_TABLE_BYTE_TO_CHAR): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20544
diff
changeset
|
220 /* Convert the byte offset BYTEPOS into a character position, |
21015
9f8f791762a8
(UPDATE_SYNTAX_TABLE): Do nothing unless parse_sexp_lookup_properties.
Richard M. Stallman <rms@gnu.org>
parents:
20957
diff
changeset
|
221 for the object recorded in gl_state with SETUP_SYNTAX_TABLE_FOR_OBJECT. |
9f8f791762a8
(UPDATE_SYNTAX_TABLE): Do nothing unless parse_sexp_lookup_properties.
Richard M. Stallman <rms@gnu.org>
parents:
20957
diff
changeset
|
222 |
9f8f791762a8
(UPDATE_SYNTAX_TABLE): Do nothing unless parse_sexp_lookup_properties.
Richard M. Stallman <rms@gnu.org>
parents:
20957
diff
changeset
|
223 The value is meant for use in the UPDATE_SYNTAX_TABLE... macros. |
9f8f791762a8
(UPDATE_SYNTAX_TABLE): Do nothing unless parse_sexp_lookup_properties.
Richard M. Stallman <rms@gnu.org>
parents:
20957
diff
changeset
|
224 These macros do nothing when parse_sexp_lookup_properties is 0, |
9f8f791762a8
(UPDATE_SYNTAX_TABLE): Do nothing unless parse_sexp_lookup_properties.
Richard M. Stallman <rms@gnu.org>
parents:
20957
diff
changeset
|
225 so we return 0 in that case, for speed. */ |
20649
388cedeebb88
(SYNTAX_TABLE_BYTE_TO_CHAR): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20544
diff
changeset
|
226 |
388cedeebb88
(SYNTAX_TABLE_BYTE_TO_CHAR): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20544
diff
changeset
|
227 #define SYNTAX_TABLE_BYTE_TO_CHAR(bytepos) \ |
21015
9f8f791762a8
(UPDATE_SYNTAX_TABLE): Do nothing unless parse_sexp_lookup_properties.
Richard M. Stallman <rms@gnu.org>
parents:
20957
diff
changeset
|
228 (! parse_sexp_lookup_properties \ |
9f8f791762a8
(UPDATE_SYNTAX_TABLE): Do nothing unless parse_sexp_lookup_properties.
Richard M. Stallman <rms@gnu.org>
parents:
20957
diff
changeset
|
229 ? 0 \ |
9f8f791762a8
(UPDATE_SYNTAX_TABLE): Do nothing unless parse_sexp_lookup_properties.
Richard M. Stallman <rms@gnu.org>
parents:
20957
diff
changeset
|
230 : STRINGP (gl_state.object) \ |
20649
388cedeebb88
(SYNTAX_TABLE_BYTE_TO_CHAR): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20544
diff
changeset
|
231 ? string_byte_to_char (gl_state.object, (bytepos)) \ |
388cedeebb88
(SYNTAX_TABLE_BYTE_TO_CHAR): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20544
diff
changeset
|
232 : BUFFERP (gl_state.object) \ |
21481
e53c0d01cf31
(SETUP_SYNTAX_TABLE_FOR_OBJECT): FROM counts chars.
Karl Heuer <kwzh@gnu.org>
parents:
21206
diff
changeset
|
233 ? buf_bytepos_to_charpos (XBUFFER (gl_state.object), \ |
e53c0d01cf31
(SETUP_SYNTAX_TABLE_FOR_OBJECT): FROM counts chars.
Karl Heuer <kwzh@gnu.org>
parents:
21206
diff
changeset
|
234 (bytepos) + BUF_BEGV_BYTE (XBUFFER (gl_state.object)) - 1) - BUF_BEGV (XBUFFER (gl_state.object)) + 1 \ |
20649
388cedeebb88
(SYNTAX_TABLE_BYTE_TO_CHAR): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20544
diff
changeset
|
235 : NILP (gl_state.object) \ |
21481
e53c0d01cf31
(SETUP_SYNTAX_TABLE_FOR_OBJECT): FROM counts chars.
Karl Heuer <kwzh@gnu.org>
parents:
21206
diff
changeset
|
236 ? BYTE_TO_CHAR ((bytepos) + BEGV_BYTE - 1) - BEGV + 1 \ |
20649
388cedeebb88
(SYNTAX_TABLE_BYTE_TO_CHAR): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20544
diff
changeset
|
237 : (bytepos)) |
388cedeebb88
(SYNTAX_TABLE_BYTE_TO_CHAR): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20544
diff
changeset
|
238 |
21481
e53c0d01cf31
(SETUP_SYNTAX_TABLE_FOR_OBJECT): FROM counts chars.
Karl Heuer <kwzh@gnu.org>
parents:
21206
diff
changeset
|
239 /* Make syntax table state (gl_state) good for CHARPOS, assuming it is |
e53c0d01cf31
(SETUP_SYNTAX_TABLE_FOR_OBJECT): FROM counts chars.
Karl Heuer <kwzh@gnu.org>
parents:
21206
diff
changeset
|
240 currently good for a position before CHARPOS. */ |
17465
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
241 |
21481
e53c0d01cf31
(SETUP_SYNTAX_TABLE_FOR_OBJECT): FROM counts chars.
Karl Heuer <kwzh@gnu.org>
parents:
21206
diff
changeset
|
242 #define UPDATE_SYNTAX_TABLE_FORWARD(charpos) \ |
21015
9f8f791762a8
(UPDATE_SYNTAX_TABLE): Do nothing unless parse_sexp_lookup_properties.
Richard M. Stallman <rms@gnu.org>
parents:
20957
diff
changeset
|
243 (parse_sexp_lookup_properties \ |
21481
e53c0d01cf31
(SETUP_SYNTAX_TABLE_FOR_OBJECT): FROM counts chars.
Karl Heuer <kwzh@gnu.org>
parents:
21206
diff
changeset
|
244 && (charpos) >= gl_state.e_property \ |
e53c0d01cf31
(SETUP_SYNTAX_TABLE_FOR_OBJECT): FROM counts chars.
Karl Heuer <kwzh@gnu.org>
parents:
21206
diff
changeset
|
245 ? (update_syntax_table ((charpos) + gl_state.offset, 1, 0, \ |
20649
388cedeebb88
(SYNTAX_TABLE_BYTE_TO_CHAR): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20544
diff
changeset
|
246 gl_state.object), \ |
388cedeebb88
(SYNTAX_TABLE_BYTE_TO_CHAR): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20544
diff
changeset
|
247 1) \ |
388cedeebb88
(SYNTAX_TABLE_BYTE_TO_CHAR): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20544
diff
changeset
|
248 : 0) |
17465
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
249 |
21481
e53c0d01cf31
(SETUP_SYNTAX_TABLE_FOR_OBJECT): FROM counts chars.
Karl Heuer <kwzh@gnu.org>
parents:
21206
diff
changeset
|
250 /* Make syntax table state (gl_state) good for CHARPOS, assuming it is |
e53c0d01cf31
(SETUP_SYNTAX_TABLE_FOR_OBJECT): FROM counts chars.
Karl Heuer <kwzh@gnu.org>
parents:
21206
diff
changeset
|
251 currently good for a position after CHARPOS. */ |
18678
d26f9720e55f
(struct gl_state_s): New field `offset'.
Richard M. Stallman <rms@gnu.org>
parents:
18625
diff
changeset
|
252 |
21481
e53c0d01cf31
(SETUP_SYNTAX_TABLE_FOR_OBJECT): FROM counts chars.
Karl Heuer <kwzh@gnu.org>
parents:
21206
diff
changeset
|
253 #define UPDATE_SYNTAX_TABLE_BACKWARD(charpos) \ |
21015
9f8f791762a8
(UPDATE_SYNTAX_TABLE): Do nothing unless parse_sexp_lookup_properties.
Richard M. Stallman <rms@gnu.org>
parents:
20957
diff
changeset
|
254 (parse_sexp_lookup_properties \ |
39795
b945bdff4f96
(struct gl_state_s): Change the meaning of b_property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26870
diff
changeset
|
255 && (charpos) < gl_state.b_property \ |
21481
e53c0d01cf31
(SETUP_SYNTAX_TABLE_FOR_OBJECT): FROM counts chars.
Karl Heuer <kwzh@gnu.org>
parents:
21206
diff
changeset
|
256 ? (update_syntax_table ((charpos) + gl_state.offset, -1, 0, \ |
20649
388cedeebb88
(SYNTAX_TABLE_BYTE_TO_CHAR): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20544
diff
changeset
|
257 gl_state.object), \ |
388cedeebb88
(SYNTAX_TABLE_BYTE_TO_CHAR): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20544
diff
changeset
|
258 1) \ |
388cedeebb88
(SYNTAX_TABLE_BYTE_TO_CHAR): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20544
diff
changeset
|
259 : 0) |
17465
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
260 |
21481
e53c0d01cf31
(SETUP_SYNTAX_TABLE_FOR_OBJECT): FROM counts chars.
Karl Heuer <kwzh@gnu.org>
parents:
21206
diff
changeset
|
261 /* Make syntax table good for CHARPOS. */ |
18678
d26f9720e55f
(struct gl_state_s): New field `offset'.
Richard M. Stallman <rms@gnu.org>
parents:
18625
diff
changeset
|
262 |
21481
e53c0d01cf31
(SETUP_SYNTAX_TABLE_FOR_OBJECT): FROM counts chars.
Karl Heuer <kwzh@gnu.org>
parents:
21206
diff
changeset
|
263 #define UPDATE_SYNTAX_TABLE(charpos) \ |
21015
9f8f791762a8
(UPDATE_SYNTAX_TABLE): Do nothing unless parse_sexp_lookup_properties.
Richard M. Stallman <rms@gnu.org>
parents:
20957
diff
changeset
|
264 (parse_sexp_lookup_properties \ |
39795
b945bdff4f96
(struct gl_state_s): Change the meaning of b_property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26870
diff
changeset
|
265 && (charpos) < gl_state.b_property \ |
21481
e53c0d01cf31
(SETUP_SYNTAX_TABLE_FOR_OBJECT): FROM counts chars.
Karl Heuer <kwzh@gnu.org>
parents:
21206
diff
changeset
|
266 ? (update_syntax_table ((charpos) + gl_state.offset, -1, 0, \ |
20649
388cedeebb88
(SYNTAX_TABLE_BYTE_TO_CHAR): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20544
diff
changeset
|
267 gl_state.object), \ |
388cedeebb88
(SYNTAX_TABLE_BYTE_TO_CHAR): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20544
diff
changeset
|
268 1) \ |
21015
9f8f791762a8
(UPDATE_SYNTAX_TABLE): Do nothing unless parse_sexp_lookup_properties.
Richard M. Stallman <rms@gnu.org>
parents:
20957
diff
changeset
|
269 : (parse_sexp_lookup_properties \ |
21481
e53c0d01cf31
(SETUP_SYNTAX_TABLE_FOR_OBJECT): FROM counts chars.
Karl Heuer <kwzh@gnu.org>
parents:
21206
diff
changeset
|
270 && (charpos) >= gl_state.e_property \ |
e53c0d01cf31
(SETUP_SYNTAX_TABLE_FOR_OBJECT): FROM counts chars.
Karl Heuer <kwzh@gnu.org>
parents:
21206
diff
changeset
|
271 ? (update_syntax_table ((charpos) + gl_state.offset, 1, 0,\ |
20649
388cedeebb88
(SYNTAX_TABLE_BYTE_TO_CHAR): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20544
diff
changeset
|
272 gl_state.object), \ |
388cedeebb88
(SYNTAX_TABLE_BYTE_TO_CHAR): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20544
diff
changeset
|
273 1) \ |
388cedeebb88
(SYNTAX_TABLE_BYTE_TO_CHAR): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20544
diff
changeset
|
274 : 0)) |
17465
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
275 |
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
276 /* This macro should be called with FROM at the start of forward |
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
277 search, or after the last position of the backward search. It |
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
278 makes sure that the first char is picked up with correct table, so |
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
279 one does not need to call UPDATE_SYNTAX_TABLE immediately after the |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46370
diff
changeset
|
280 call. |
17465
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
281 Sign of COUNT gives the direction of the search. |
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
282 */ |
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
283 |
20649
388cedeebb88
(SYNTAX_TABLE_BYTE_TO_CHAR): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20544
diff
changeset
|
284 #define SETUP_SYNTAX_TABLE(FROM, COUNT) \ |
21015
9f8f791762a8
(UPDATE_SYNTAX_TABLE): Do nothing unless parse_sexp_lookup_properties.
Richard M. Stallman <rms@gnu.org>
parents:
20957
diff
changeset
|
285 if (1) \ |
9f8f791762a8
(UPDATE_SYNTAX_TABLE): Do nothing unless parse_sexp_lookup_properties.
Richard M. Stallman <rms@gnu.org>
parents:
20957
diff
changeset
|
286 { \ |
39795
b945bdff4f96
(struct gl_state_s): Change the meaning of b_property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26870
diff
changeset
|
287 gl_state.b_property = BEGV; \ |
21015
9f8f791762a8
(UPDATE_SYNTAX_TABLE): Do nothing unless parse_sexp_lookup_properties.
Richard M. Stallman <rms@gnu.org>
parents:
20957
diff
changeset
|
288 gl_state.e_property = ZV + 1; \ |
9f8f791762a8
(UPDATE_SYNTAX_TABLE): Do nothing unless parse_sexp_lookup_properties.
Richard M. Stallman <rms@gnu.org>
parents:
20957
diff
changeset
|
289 gl_state.object = Qnil; \ |
9f8f791762a8
(UPDATE_SYNTAX_TABLE): Do nothing unless parse_sexp_lookup_properties.
Richard M. Stallman <rms@gnu.org>
parents:
20957
diff
changeset
|
290 gl_state.use_global = 0; \ |
9f8f791762a8
(UPDATE_SYNTAX_TABLE): Do nothing unless parse_sexp_lookup_properties.
Richard M. Stallman <rms@gnu.org>
parents:
20957
diff
changeset
|
291 gl_state.offset = 0; \ |
9f8f791762a8
(UPDATE_SYNTAX_TABLE): Do nothing unless parse_sexp_lookup_properties.
Richard M. Stallman <rms@gnu.org>
parents:
20957
diff
changeset
|
292 gl_state.current_syntax_table = current_buffer->syntax_table; \ |
9f8f791762a8
(UPDATE_SYNTAX_TABLE): Do nothing unless parse_sexp_lookup_properties.
Richard M. Stallman <rms@gnu.org>
parents:
20957
diff
changeset
|
293 if (parse_sexp_lookup_properties) \ |
22438
917424c9c149
(SETUP_SYNTAX_TABLE): Don't call update_syntax_table
Richard M. Stallman <rms@gnu.org>
parents:
21481
diff
changeset
|
294 if ((COUNT) > 0 || (FROM) > BEGV) \ |
917424c9c149
(SETUP_SYNTAX_TABLE): Don't call update_syntax_table
Richard M. Stallman <rms@gnu.org>
parents:
21481
diff
changeset
|
295 update_syntax_table ((COUNT) > 0 ? (FROM) : (FROM) - 1, (COUNT),\ |
917424c9c149
(SETUP_SYNTAX_TABLE): Don't call update_syntax_table
Richard M. Stallman <rms@gnu.org>
parents:
21481
diff
changeset
|
296 1, Qnil); \ |
21015
9f8f791762a8
(UPDATE_SYNTAX_TABLE): Do nothing unless parse_sexp_lookup_properties.
Richard M. Stallman <rms@gnu.org>
parents:
20957
diff
changeset
|
297 } \ |
9f8f791762a8
(UPDATE_SYNTAX_TABLE): Do nothing unless parse_sexp_lookup_properties.
Richard M. Stallman <rms@gnu.org>
parents:
20957
diff
changeset
|
298 else |
17465
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
299 |
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
300 /* Same as above, but in OBJECT. If OBJECT is nil, use current buffer. |
18678
d26f9720e55f
(struct gl_state_s): New field `offset'.
Richard M. Stallman <rms@gnu.org>
parents:
18625
diff
changeset
|
301 If it is t, ignore properties altogether. |
d26f9720e55f
(struct gl_state_s): New field `offset'.
Richard M. Stallman <rms@gnu.org>
parents:
18625
diff
changeset
|
302 |
d26f9720e55f
(struct gl_state_s): New field `offset'.
Richard M. Stallman <rms@gnu.org>
parents:
18625
diff
changeset
|
303 This is meant for regex.c to use. For buffers, regex.c passes arguments |
d26f9720e55f
(struct gl_state_s): New field `offset'.
Richard M. Stallman <rms@gnu.org>
parents:
18625
diff
changeset
|
304 to the UPDATE_SYNTAX_TABLE macros which are relative to BEGV. |
20544
a884f0426ab9
(SETUP_SYNTAX_TABLE_FOR_OBJECT): Call bytepos_to_charpos.
Richard M. Stallman <rms@gnu.org>
parents:
20487
diff
changeset
|
305 So if it is a buffer, we set the offset field to BEGV. */ |
486 | 306 |
20649
388cedeebb88
(SYNTAX_TABLE_BYTE_TO_CHAR): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20544
diff
changeset
|
307 #define SETUP_SYNTAX_TABLE_FOR_OBJECT(OBJECT, FROM, COUNT) \ |
20544
a884f0426ab9
(SETUP_SYNTAX_TABLE_FOR_OBJECT): Call bytepos_to_charpos.
Richard M. Stallman <rms@gnu.org>
parents:
20487
diff
changeset
|
308 if (1) \ |
a884f0426ab9
(SETUP_SYNTAX_TABLE_FOR_OBJECT): Call bytepos_to_charpos.
Richard M. Stallman <rms@gnu.org>
parents:
20487
diff
changeset
|
309 { \ |
20649
388cedeebb88
(SYNTAX_TABLE_BYTE_TO_CHAR): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20544
diff
changeset
|
310 gl_state.object = (OBJECT); \ |
388cedeebb88
(SYNTAX_TABLE_BYTE_TO_CHAR): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20544
diff
changeset
|
311 if (BUFFERP (gl_state.object)) \ |
388cedeebb88
(SYNTAX_TABLE_BYTE_TO_CHAR): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20544
diff
changeset
|
312 { \ |
388cedeebb88
(SYNTAX_TABLE_BYTE_TO_CHAR): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20544
diff
changeset
|
313 struct buffer *buf = XBUFFER (gl_state.object); \ |
39795
b945bdff4f96
(struct gl_state_s): Change the meaning of b_property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26870
diff
changeset
|
314 gl_state.b_property = 1; \ |
20957
25bb3da85d05
(UPDATE_SYNTAX_TABLE_FORWARD): Fix condition.
Karl Heuer <kwzh@gnu.org>
parents:
20708
diff
changeset
|
315 gl_state.e_property = BUF_ZV (buf) - BUF_BEGV (buf) + 1; \ |
20649
388cedeebb88
(SYNTAX_TABLE_BYTE_TO_CHAR): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20544
diff
changeset
|
316 gl_state.offset = BUF_BEGV (buf) - 1; \ |
388cedeebb88
(SYNTAX_TABLE_BYTE_TO_CHAR): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20544
diff
changeset
|
317 } \ |
388cedeebb88
(SYNTAX_TABLE_BYTE_TO_CHAR): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20544
diff
changeset
|
318 else if (NILP (gl_state.object)) \ |
20544
a884f0426ab9
(SETUP_SYNTAX_TABLE_FOR_OBJECT): Call bytepos_to_charpos.
Richard M. Stallman <rms@gnu.org>
parents:
20487
diff
changeset
|
319 { \ |
39795
b945bdff4f96
(struct gl_state_s): Change the meaning of b_property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26870
diff
changeset
|
320 gl_state.b_property = 1; \ |
20957
25bb3da85d05
(UPDATE_SYNTAX_TABLE_FORWARD): Fix condition.
Karl Heuer <kwzh@gnu.org>
parents:
20708
diff
changeset
|
321 gl_state.e_property = ZV - BEGV + 1; \ |
20544
a884f0426ab9
(SETUP_SYNTAX_TABLE_FOR_OBJECT): Call bytepos_to_charpos.
Richard M. Stallman <rms@gnu.org>
parents:
20487
diff
changeset
|
322 gl_state.offset = BEGV - 1; \ |
a884f0426ab9
(SETUP_SYNTAX_TABLE_FOR_OBJECT): Call bytepos_to_charpos.
Richard M. Stallman <rms@gnu.org>
parents:
20487
diff
changeset
|
323 } \ |
20649
388cedeebb88
(SYNTAX_TABLE_BYTE_TO_CHAR): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20544
diff
changeset
|
324 else if (EQ (gl_state.object, Qt)) \ |
20544
a884f0426ab9
(SETUP_SYNTAX_TABLE_FOR_OBJECT): Call bytepos_to_charpos.
Richard M. Stallman <rms@gnu.org>
parents:
20487
diff
changeset
|
325 { \ |
39795
b945bdff4f96
(struct gl_state_s): Change the meaning of b_property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26870
diff
changeset
|
326 gl_state.b_property = 0; \ |
20544
a884f0426ab9
(SETUP_SYNTAX_TABLE_FOR_OBJECT): Call bytepos_to_charpos.
Richard M. Stallman <rms@gnu.org>
parents:
20487
diff
changeset
|
327 gl_state.e_property = 1500000000; \ |
a884f0426ab9
(SETUP_SYNTAX_TABLE_FOR_OBJECT): Call bytepos_to_charpos.
Richard M. Stallman <rms@gnu.org>
parents:
20487
diff
changeset
|
328 gl_state.offset = 0; \ |
a884f0426ab9
(SETUP_SYNTAX_TABLE_FOR_OBJECT): Call bytepos_to_charpos.
Richard M. Stallman <rms@gnu.org>
parents:
20487
diff
changeset
|
329 } \ |
a884f0426ab9
(SETUP_SYNTAX_TABLE_FOR_OBJECT): Call bytepos_to_charpos.
Richard M. Stallman <rms@gnu.org>
parents:
20487
diff
changeset
|
330 else \ |
a884f0426ab9
(SETUP_SYNTAX_TABLE_FOR_OBJECT): Call bytepos_to_charpos.
Richard M. Stallman <rms@gnu.org>
parents:
20487
diff
changeset
|
331 { \ |
39795
b945bdff4f96
(struct gl_state_s): Change the meaning of b_property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26870
diff
changeset
|
332 gl_state.b_property = 0; \ |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
39795
diff
changeset
|
333 gl_state.e_property = 1 + SCHARS (gl_state.object); \ |
20544
a884f0426ab9
(SETUP_SYNTAX_TABLE_FOR_OBJECT): Call bytepos_to_charpos.
Richard M. Stallman <rms@gnu.org>
parents:
20487
diff
changeset
|
334 gl_state.offset = 0; \ |
a884f0426ab9
(SETUP_SYNTAX_TABLE_FOR_OBJECT): Call bytepos_to_charpos.
Richard M. Stallman <rms@gnu.org>
parents:
20487
diff
changeset
|
335 } \ |
a884f0426ab9
(SETUP_SYNTAX_TABLE_FOR_OBJECT): Call bytepos_to_charpos.
Richard M. Stallman <rms@gnu.org>
parents:
20487
diff
changeset
|
336 gl_state.use_global = 0; \ |
a884f0426ab9
(SETUP_SYNTAX_TABLE_FOR_OBJECT): Call bytepos_to_charpos.
Richard M. Stallman <rms@gnu.org>
parents:
20487
diff
changeset
|
337 gl_state.current_syntax_table = current_buffer->syntax_table; \ |
a884f0426ab9
(SETUP_SYNTAX_TABLE_FOR_OBJECT): Call bytepos_to_charpos.
Richard M. Stallman <rms@gnu.org>
parents:
20487
diff
changeset
|
338 if (parse_sexp_lookup_properties) \ |
21481
e53c0d01cf31
(SETUP_SYNTAX_TABLE_FOR_OBJECT): FROM counts chars.
Karl Heuer <kwzh@gnu.org>
parents:
21206
diff
changeset
|
339 update_syntax_table (((FROM) + gl_state.offset \ |
20649
388cedeebb88
(SYNTAX_TABLE_BYTE_TO_CHAR): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20544
diff
changeset
|
340 + (COUNT > 0 ? 0 : -1)), \ |
388cedeebb88
(SYNTAX_TABLE_BYTE_TO_CHAR): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20544
diff
changeset
|
341 COUNT, 1, gl_state.object); \ |
20544
a884f0426ab9
(SETUP_SYNTAX_TABLE_FOR_OBJECT): Call bytepos_to_charpos.
Richard M. Stallman <rms@gnu.org>
parents:
20487
diff
changeset
|
342 } \ |
a884f0426ab9
(SETUP_SYNTAX_TABLE_FOR_OBJECT): Call bytepos_to_charpos.
Richard M. Stallman <rms@gnu.org>
parents:
20487
diff
changeset
|
343 else |
17465
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
344 |
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
345 struct gl_state_s |
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
346 { |
20649
388cedeebb88
(SYNTAX_TABLE_BYTE_TO_CHAR): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20544
diff
changeset
|
347 Lisp_Object object; /* The object we are scanning. */ |
17465
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
348 int start; /* Where to stop. */ |
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
349 int stop; /* Where to stop. */ |
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
350 int use_global; /* Whether to use global_code |
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
351 or c_s_t. */ |
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
352 Lisp_Object global_code; /* Syntax code of current char. */ |
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
353 Lisp_Object current_syntax_table; /* Syntax table for current pos. */ |
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
354 Lisp_Object old_prop; /* Syntax-table prop at prev pos. */ |
39795
b945bdff4f96
(struct gl_state_s): Change the meaning of b_property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26870
diff
changeset
|
355 int b_property; /* First index where c_s_t is valid. */ |
17465
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
356 int e_property; /* First index where c_s_t is |
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
357 not valid. */ |
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
358 INTERVAL forward_i; /* Where to start lookup on forward */ |
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
359 INTERVAL backward_i; /* or backward movement. The |
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
360 data in c_s_t is valid |
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
361 between these intervals, |
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
362 and possibly at the |
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
363 intervals too, depending |
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
364 on: */ |
18678
d26f9720e55f
(struct gl_state_s): New field `offset'.
Richard M. Stallman <rms@gnu.org>
parents:
18625
diff
changeset
|
365 /* Offset for positions specified to UPDATE_SYNTAX_TABLE. */ |
d26f9720e55f
(struct gl_state_s): New field `offset'.
Richard M. Stallman <rms@gnu.org>
parents:
18625
diff
changeset
|
366 int offset; |
17465
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
367 }; |
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
368 |
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
369 extern struct gl_state_s gl_state; |
8a008f65c8d4
(enum syntaxcode): New members Scomment_fence, Sstring_fence.
Richard M. Stallman <rms@gnu.org>
parents:
17181
diff
changeset
|
370 extern int parse_sexp_lookup_properties; |
20349 | 371 extern INTERVAL interval_of P_ ((int, Lisp_Object)); |
372 | |
373 extern int scan_words P_ ((int, int)); | |
52401 | 374 |
375 /* arch-tag: 28833cca-cd73-4741-8c85-a3111166a0e0 | |
376 (do not change this comment) */ |