diff options
| author | Paul Eggert | 2013-07-10 09:11:09 -0700 |
|---|---|---|
| committer | Paul Eggert | 2013-07-10 09:11:09 -0700 |
| commit | 45b683a16c289f67079f60ca1a7bc51d75e8d0c1 (patch) | |
| tree | bd6f6a6c5f62d47f240137217586ee1f257bc011 /src | |
| parent | 500dd7a35d5a4a444f45da036f43cdbbc3bcbbd0 (diff) | |
| download | emacs-45b683a16c289f67079f60ca1a7bc51d75e8d0c1.tar.gz emacs-45b683a16c289f67079f60ca1a7bc51d75e8d0c1.zip | |
Syntax cleanup, mostly replacing macros with functions.
This removes the need for the syntax_temp hack.
* search.c: Include syntax.h after buffer.h, since syntax.h uses BVAR.
* syntax.c (SYNTAX_INLINE): New macro.
(SYNTAX_FLAGS_COMSTART_FIRST, SYNTAX_FLAGS_COMSTART_SECOND)
(SYNTAX_FLAGS_COMEND_FIRST, SYNTAX_FLAGS_COMEND_SECOND)
(SYNTAX_FLAGS_PREFIX, SYNTAX_FLAGS_COMMENT_STYLEB)
(SYNTAX_FLAGS_COMMENT_STYLEC, SYNTAX_FLAGS_COMMENT_STYLEC2)
(SYNTAX_FLAGS_COMMENT_NESTED, SYNTAX_FLAGS_COMMENT_STYLE)
(SYNTAX_COMEND_FIRST): Now functions, not macros.
(ST_COMMENT_STYLE, ST_STRING_STYLE, INTERVALS_AT_ONCE):
Now constants, not macros.
(syntax_temp) [!__GNUC__]: Remove.
(SYNTAX_PREFIX): Remove; all uses replaced by syntax_prefix_flag_p.
(syntax_prefix_flag_p): Move implementation of SYNTAX_PREFIX here.
(SET_RAW_SYNTAX_ENTRY, SET_RAW_SYNTAX_ENTRY_RANGE, SYNTAX_MATCH)
(SETUP_SYNTAX_TABLE, SETUP_SYNTAX_TABLE_FOR_OBJECT):
Move here from syntax.h; now functions, not macros. Except for the
last function, these are static since only syntax.c uses them.
(syntax_multibyte): Rename from SYNTAX_WITH_MULTIBYTE_CHECK.
All uses changed. Now a function, not a macro; use this fact
to simplify the code.
(scan_lists, scan_sexps_forward): Remove workarounds for ancient
compiler bugs; no longer relevant.
* syntax.h: Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
(SYNTAX_INLINE): New macro.
(struct gl_state_s, gl_state): Move earlier, so that it's in scope
for the new functions. Use bool for boolean member.
(SYNTAX_ENTRY, SYNTAX, SYNTAX_WITH_FLAGS, SYNTAX_MATCH)
(SYNTAX_TABLE_BYTE_TO_CHAR, UPDATE_SYNTAX_TABLE_FORWARD)
(UPDATE_SYNTAX_TABLE_BACKWARD, UPDATE_SYNTAX_TABLE)
(SETUP_BUFFER_SYNTAX_TABLE):
Now extern inline functions, not macros.
(CURRENT_SYNTAX_TABLE, SYNTAX_ENTRY_INT):
Remove; all uses replaced by implementation.
(syntax_temp) [!__GNUC__]: Remove decl.
(SETUP_SYNTAX_TABLE_FOR_OBJECT): New decl.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 40 | ||||
| -rw-r--r-- | src/search.c | 2 | ||||
| -rw-r--r-- | src/syntax.c | 272 | ||||
| -rw-r--r-- | src/syntax.h | 296 |
4 files changed, 337 insertions, 273 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index dcd7c13b00f..4d2c0409860 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,43 @@ | |||
| 1 | 2013-07-10 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | Syntax cleanup, mostly replacing macros with functions. | ||
| 4 | ` This removes the need for the syntax_temp hack. | ||
| 5 | * search.c: Include syntax.h after buffer.h, since syntax.h uses BVAR. | ||
| 6 | * syntax.c (SYNTAX_INLINE): New macro. | ||
| 7 | (SYNTAX_FLAGS_COMSTART_FIRST, SYNTAX_FLAGS_COMSTART_SECOND) | ||
| 8 | (SYNTAX_FLAGS_COMEND_FIRST, SYNTAX_FLAGS_COMEND_SECOND) | ||
| 9 | (SYNTAX_FLAGS_PREFIX, SYNTAX_FLAGS_COMMENT_STYLEB) | ||
| 10 | (SYNTAX_FLAGS_COMMENT_STYLEC, SYNTAX_FLAGS_COMMENT_STYLEC2) | ||
| 11 | (SYNTAX_FLAGS_COMMENT_NESTED, SYNTAX_FLAGS_COMMENT_STYLE) | ||
| 12 | (SYNTAX_COMEND_FIRST): Now functions, not macros. | ||
| 13 | (ST_COMMENT_STYLE, ST_STRING_STYLE, INTERVALS_AT_ONCE): | ||
| 14 | Now constants, not macros. | ||
| 15 | (syntax_temp) [!__GNUC__]: Remove. | ||
| 16 | (SYNTAX_PREFIX): Remove; all uses replaced by syntax_prefix_flag_p. | ||
| 17 | (syntax_prefix_flag_p): Move implementation of SYNTAX_PREFIX here. | ||
| 18 | (SET_RAW_SYNTAX_ENTRY, SET_RAW_SYNTAX_ENTRY_RANGE, SYNTAX_MATCH) | ||
| 19 | (SETUP_SYNTAX_TABLE, SETUP_SYNTAX_TABLE_FOR_OBJECT): | ||
| 20 | Move here from syntax.h; now functions, not macros. Except for the | ||
| 21 | last function, these are static since only syntax.c uses them. | ||
| 22 | (syntax_multibyte): Rename from SYNTAX_WITH_MULTIBYTE_CHECK. | ||
| 23 | All uses changed. Now a function, not a macro; use this fact | ||
| 24 | to simplify the code. | ||
| 25 | (scan_lists, scan_sexps_forward): Remove workarounds for ancient | ||
| 26 | compiler bugs; no longer relevant. | ||
| 27 | * syntax.h: Use INLINE_HEADER_BEGIN, INLINE_HEADER_END. | ||
| 28 | (SYNTAX_INLINE): New macro. | ||
| 29 | (struct gl_state_s, gl_state): Move earlier, so that it's in scope | ||
| 30 | for the new functions. Use bool for boolean member. | ||
| 31 | (SYNTAX_ENTRY, SYNTAX, SYNTAX_WITH_FLAGS, SYNTAX_MATCH) | ||
| 32 | (SYNTAX_TABLE_BYTE_TO_CHAR, UPDATE_SYNTAX_TABLE_FORWARD) | ||
| 33 | (UPDATE_SYNTAX_TABLE_BACKWARD, UPDATE_SYNTAX_TABLE) | ||
| 34 | (SETUP_BUFFER_SYNTAX_TABLE): | ||
| 35 | Now extern inline functions, not macros. | ||
| 36 | (CURRENT_SYNTAX_TABLE, SYNTAX_ENTRY_INT): | ||
| 37 | Remove; all uses replaced by implementation. | ||
| 38 | (syntax_temp) [!__GNUC__]: Remove decl. | ||
| 39 | (SETUP_SYNTAX_TABLE_FOR_OBJECT): New decl. | ||
| 40 | |||
| 1 | 2013-07-10 Jan Djärv <jan.h.d@swipnet.se> | 41 | 2013-07-10 Jan Djärv <jan.h.d@swipnet.se> |
| 2 | 42 | ||
| 3 | * emacs.c (main): Fix syntax error. | 43 | * emacs.c (main): Fix syntax error. |
diff --git a/src/search.c b/src/search.c index 8b4d39c7811..19cc08f84c4 100644 --- a/src/search.c +++ b/src/search.c | |||
| @@ -22,10 +22,10 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 22 | #include <config.h> | 22 | #include <config.h> |
| 23 | 23 | ||
| 24 | #include "lisp.h" | 24 | #include "lisp.h" |
| 25 | #include "syntax.h" | ||
| 26 | #include "category.h" | 25 | #include "category.h" |
| 27 | #include "character.h" | 26 | #include "character.h" |
| 28 | #include "buffer.h" | 27 | #include "buffer.h" |
| 28 | #include "syntax.h" | ||
| 29 | #include "charset.h" | 29 | #include "charset.h" |
| 30 | #include "region-cache.h" | 30 | #include "region-cache.h" |
| 31 | #include "commands.h" | 31 | #include "commands.h" |
diff --git a/src/syntax.c b/src/syntax.c index ea15cf68c43..6d52d115889 100644 --- a/src/syntax.c +++ b/src/syntax.c | |||
| @@ -20,6 +20,8 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 20 | 20 | ||
| 21 | #include <config.h> | 21 | #include <config.h> |
| 22 | 22 | ||
| 23 | #define SYNTAX_INLINE EXTERN_INLINE | ||
| 24 | |||
| 23 | #include <sys/types.h> | 25 | #include <sys/types.h> |
| 24 | 26 | ||
| 25 | #include "lisp.h" | 27 | #include "lisp.h" |
| @@ -58,54 +60,86 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 58 | For style c (like the nested flag), the flag can be placed on any of | 60 | For style c (like the nested flag), the flag can be placed on any of |
| 59 | the chars. */ | 61 | the chars. */ |
| 60 | 62 | ||
| 61 | /* These macros extract specific flags from an integer | 63 | /* These functions extract specific flags from an integer |
| 62 | that holds the syntax code and the flags. */ | 64 | that holds the syntax code and the flags. */ |
| 63 | 65 | ||
| 64 | #define SYNTAX_FLAGS_COMSTART_FIRST(flags) (((flags) >> 16) & 1) | 66 | static bool |
| 65 | 67 | SYNTAX_FLAGS_COMSTART_FIRST (int flags) | |
| 66 | #define SYNTAX_FLAGS_COMSTART_SECOND(flags) (((flags) >> 17) & 1) | 68 | { |
| 67 | 69 | return (flags >> 16) & 1; | |
| 68 | #define SYNTAX_FLAGS_COMEND_FIRST(flags) (((flags) >> 18) & 1) | 70 | } |
| 69 | 71 | static bool | |
| 70 | #define SYNTAX_FLAGS_COMEND_SECOND(flags) (((flags) >> 19) & 1) | 72 | SYNTAX_FLAGS_COMSTART_SECOND (int flags) |
| 71 | 73 | { | |
| 72 | #define SYNTAX_FLAGS_PREFIX(flags) (((flags) >> 20) & 1) | 74 | return (flags >> 17) & 1; |
| 75 | } | ||
| 76 | static bool | ||
| 77 | SYNTAX_FLAGS_COMEND_FIRST (int flags) | ||
| 78 | { | ||
| 79 | return (flags >> 18) & 1; | ||
| 80 | } | ||
| 81 | static bool | ||
| 82 | SYNTAX_FLAGS_COMEND_SECOND (int flags) | ||
| 83 | { | ||
| 84 | return (flags >> 19) & 1; | ||
| 85 | } | ||
| 86 | static bool | ||
| 87 | SYNTAX_FLAGS_PREFIX (int flags) | ||
| 88 | { | ||
| 89 | return (flags >> 20) & 1; | ||
| 90 | } | ||
| 91 | static bool | ||
| 92 | SYNTAX_FLAGS_COMMENT_STYLEB (int flags) | ||
| 93 | { | ||
| 94 | return (flags >> 21) & 1; | ||
| 95 | } | ||
| 96 | static bool | ||
| 97 | SYNTAX_FLAGS_COMMENT_STYLEC (int flags) | ||
| 98 | { | ||
| 99 | return (flags >> 23) & 1; | ||
| 100 | } | ||
| 101 | static int | ||
| 102 | SYNTAX_FLAGS_COMMENT_STYLEC2 (int flags) | ||
| 103 | { | ||
| 104 | return (flags >> 22) & 2; /* SYNTAX_FLAGS_COMMENT_STYLEC (flags) * 2 */ | ||
| 105 | } | ||
| 106 | static bool | ||
| 107 | SYNTAX_FLAGS_COMMENT_NESTED (int flags) | ||
| 108 | { | ||
| 109 | return (flags >> 22) & 1; | ||
| 110 | } | ||
| 73 | 111 | ||
| 74 | #define SYNTAX_FLAGS_COMMENT_STYLEB(flags) (((flags) >> 21) & 1) | ||
| 75 | #define SYNTAX_FLAGS_COMMENT_STYLEC(flags) (((flags) >> 23) & 1) | ||
| 76 | #define SYNTAX_FLAGS_COMMENT_STYLEC2(flags) (((flags) >> 22) & 2) /* C * 2 */ | ||
| 77 | /* FLAGS should be the flags of the main char of the comment marker, e.g. | 112 | /* FLAGS should be the flags of the main char of the comment marker, e.g. |
| 78 | the second for comstart and the first for comend. */ | 113 | the second for comstart and the first for comend. */ |
| 79 | #define SYNTAX_FLAGS_COMMENT_STYLE(flags, other_flags) \ | 114 | static int |
| 80 | (SYNTAX_FLAGS_COMMENT_STYLEB (flags) \ | 115 | SYNTAX_FLAGS_COMMENT_STYLE (int flags, int other_flags) |
| 81 | | SYNTAX_FLAGS_COMMENT_STYLEC2 (flags) \ | 116 | { |
| 82 | | SYNTAX_FLAGS_COMMENT_STYLEC2 (other_flags)) | 117 | return (SYNTAX_FLAGS_COMMENT_STYLEB (flags) |
| 83 | 118 | | SYNTAX_FLAGS_COMMENT_STYLEC2 (flags) | |
| 84 | #define SYNTAX_FLAGS_COMMENT_NESTED(flags) (((flags) >> 22) & 1) | 119 | | SYNTAX_FLAGS_COMMENT_STYLEC2 (other_flags)); |
| 120 | } | ||
| 85 | 121 | ||
| 86 | /* These macros extract a particular flag for a given character. */ | 122 | /* Extract a particular flag for a given character. */ |
| 87 | 123 | ||
| 88 | #define SYNTAX_COMEND_FIRST(c) \ | 124 | static bool |
| 89 | (SYNTAX_FLAGS_COMEND_FIRST (SYNTAX_WITH_FLAGS (c))) | 125 | SYNTAX_COMEND_FIRST (int c) |
| 90 | #define SYNTAX_PREFIX(c) (SYNTAX_FLAGS_PREFIX (SYNTAX_WITH_FLAGS (c))) | 126 | { |
| 127 | return SYNTAX_FLAGS_COMEND_FIRST (SYNTAX_WITH_FLAGS (c)); | ||
| 128 | } | ||
| 91 | 129 | ||
| 92 | /* We use these constants in place for comment-style and | 130 | /* We use these constants in place for comment-style and |
| 93 | string-ender-char to distinguish comments/strings started by | 131 | string-ender-char to distinguish comments/strings started by |
| 94 | comment_fence and string_fence codes. */ | 132 | comment_fence and string_fence codes. */ |
| 95 | 133 | ||
| 96 | #define ST_COMMENT_STYLE (256 + 1) | 134 | enum |
| 97 | #define ST_STRING_STYLE (256 + 2) | 135 | { |
| 136 | ST_COMMENT_STYLE = 256 + 1, | ||
| 137 | ST_STRING_STYLE = 256 + 2 | ||
| 138 | }; | ||
| 98 | 139 | ||
| 99 | static Lisp_Object Qsyntax_table_p; | 140 | static Lisp_Object Qsyntax_table_p; |
| 100 | static Lisp_Object Qsyntax_table, Qscan_error; | 141 | static Lisp_Object Qsyntax_table, Qscan_error; |
| 101 | 142 | ||
| 102 | #ifndef __GNUC__ | ||
| 103 | /* Used as a temporary in SYNTAX_ENTRY and other macros in syntax.h, | ||
| 104 | if not compiled with GCC. No need to mark it, since it is used | ||
| 105 | only very temporarily. */ | ||
| 106 | Lisp_Object syntax_temp; | ||
| 107 | #endif | ||
| 108 | |||
| 109 | /* This is the internal form of the parse state used in parse-partial-sexp. */ | 143 | /* This is the internal form of the parse state used in parse-partial-sexp. */ |
| 110 | 144 | ||
| 111 | struct lisp_parse_state | 145 | struct lisp_parse_state |
| @@ -162,14 +196,107 @@ bset_syntax_table (struct buffer *b, Lisp_Object val) | |||
| 162 | bool | 196 | bool |
| 163 | syntax_prefix_flag_p (int c) | 197 | syntax_prefix_flag_p (int c) |
| 164 | { | 198 | { |
| 165 | return SYNTAX_PREFIX (c); | 199 | return SYNTAX_FLAGS_PREFIX (SYNTAX_WITH_FLAGS (c)); |
| 166 | } | 200 | } |
| 167 | 201 | ||
| 168 | struct gl_state_s gl_state; /* Global state of syntax parser. */ | 202 | struct gl_state_s gl_state; /* Global state of syntax parser. */ |
| 169 | 203 | ||
| 170 | #define INTERVALS_AT_ONCE 10 /* 1 + max-number of intervals | 204 | enum { INTERVALS_AT_ONCE = 10 }; /* 1 + max-number of intervals |
| 171 | to scan to property-change. */ | 205 | to scan to property-change. */ |
| 172 | 206 | ||
| 207 | /* Set the syntax entry VAL for char C in table TABLE. */ | ||
| 208 | |||
| 209 | static void | ||
| 210 | SET_RAW_SYNTAX_ENTRY (Lisp_Object table, int c, Lisp_Object val) | ||
| 211 | { | ||
| 212 | CHAR_TABLE_SET (table, c, val); | ||
| 213 | } | ||
| 214 | |||
| 215 | /* Set the syntax entry VAL for char-range RANGE in table TABLE. | ||
| 216 | RANGE is a cons (FROM . TO) specifying the range of characters. */ | ||
| 217 | |||
| 218 | static void | ||
| 219 | SET_RAW_SYNTAX_ENTRY_RANGE (Lisp_Object table, Lisp_Object range, | ||
| 220 | Lisp_Object val) | ||
| 221 | { | ||
| 222 | Fset_char_table_range (table, range, val); | ||
| 223 | } | ||
| 224 | |||
| 225 | /* Extract the information from the entry for character C | ||
| 226 | in the current syntax table. */ | ||
| 227 | |||
| 228 | static Lisp_Object | ||
| 229 | SYNTAX_MATCH (int c) | ||
| 230 | { | ||
| 231 | Lisp_Object ent = SYNTAX_ENTRY (c); | ||
| 232 | return CONSP (ent) ? XCDR (ent) : Qnil; | ||
| 233 | } | ||
| 234 | |||
| 235 | /* This should be called with FROM at the start of forward | ||
| 236 | search, or after the last position of the backward search. It | ||
| 237 | makes sure that the first char is picked up with correct table, so | ||
| 238 | one does not need to call UPDATE_SYNTAX_TABLE immediately after the | ||
| 239 | call. | ||
| 240 | Sign of COUNT gives the direction of the search. | ||
| 241 | */ | ||
| 242 | |||
| 243 | static void | ||
| 244 | SETUP_SYNTAX_TABLE (ptrdiff_t from, ptrdiff_t count) | ||
| 245 | { | ||
| 246 | SETUP_BUFFER_SYNTAX_TABLE (); | ||
| 247 | gl_state.b_property = BEGV; | ||
| 248 | gl_state.e_property = ZV + 1; | ||
| 249 | gl_state.object = Qnil; | ||
| 250 | gl_state.offset = 0; | ||
| 251 | if (parse_sexp_lookup_properties) | ||
| 252 | if (count > 0 || from > BEGV) | ||
| 253 | update_syntax_table (count > 0 ? from : from - 1, count, 1, Qnil); | ||
| 254 | } | ||
| 255 | |||
| 256 | /* Same as above, but in OBJECT. If OBJECT is nil, use current buffer. | ||
| 257 | If it is t (which is only used in fast_c_string_match_ignore_case), | ||
| 258 | ignore properties altogether. | ||
| 259 | |||
| 260 | This is meant for regex.c to use. For buffers, regex.c passes arguments | ||
| 261 | to the UPDATE_SYNTAX_TABLE functions which are relative to BEGV. | ||
| 262 | So if it is a buffer, we set the offset field to BEGV. */ | ||
| 263 | |||
| 264 | void | ||
| 265 | SETUP_SYNTAX_TABLE_FOR_OBJECT (Lisp_Object object, | ||
| 266 | ptrdiff_t from, ptrdiff_t count) | ||
| 267 | { | ||
| 268 | SETUP_BUFFER_SYNTAX_TABLE (); | ||
| 269 | gl_state.object = object; | ||
| 270 | if (BUFFERP (gl_state.object)) | ||
| 271 | { | ||
| 272 | struct buffer *buf = XBUFFER (gl_state.object); | ||
| 273 | gl_state.b_property = 1; | ||
| 274 | gl_state.e_property = BUF_ZV (buf) - BUF_BEGV (buf) + 1; | ||
| 275 | gl_state.offset = BUF_BEGV (buf) - 1; | ||
| 276 | } | ||
| 277 | else if (NILP (gl_state.object)) | ||
| 278 | { | ||
| 279 | gl_state.b_property = 1; | ||
| 280 | gl_state.e_property = ZV - BEGV + 1; | ||
| 281 | gl_state.offset = BEGV - 1; | ||
| 282 | } | ||
| 283 | else if (EQ (gl_state.object, Qt)) | ||
| 284 | { | ||
| 285 | gl_state.b_property = 0; | ||
| 286 | gl_state.e_property = PTRDIFF_MAX; | ||
| 287 | gl_state.offset = 0; | ||
| 288 | } | ||
| 289 | else | ||
| 290 | { | ||
| 291 | gl_state.b_property = 0; | ||
| 292 | gl_state.e_property = 1 + SCHARS (gl_state.object); | ||
| 293 | gl_state.offset = 0; | ||
| 294 | } | ||
| 295 | if (parse_sexp_lookup_properties) | ||
| 296 | update_syntax_table (from + gl_state.offset - (count <= 0), | ||
| 297 | count, 1, gl_state.object); | ||
| 298 | } | ||
| 299 | |||
| 173 | /* Update gl_state to an appropriate interval which contains CHARPOS. The | 300 | /* Update gl_state to an appropriate interval which contains CHARPOS. The |
| 174 | sign of COUNT give the relative position of CHARPOS wrt the previously | 301 | sign of COUNT give the relative position of CHARPOS wrt the previously |
| 175 | valid interval. If INIT, only [be]_property fields of gl_state are | 302 | valid interval. If INIT, only [be]_property fields of gl_state are |
| @@ -1751,7 +1878,7 @@ skip_chars (bool forwardp, Lisp_Object string, Lisp_Object lim, | |||
| 1751 | } | 1878 | } |
| 1752 | 1879 | ||
| 1753 | immediate_quit = 1; | 1880 | immediate_quit = 1; |
| 1754 | /* This code may look up syntax tables using macros that rely on the | 1881 | /* This code may look up syntax tables using functions that rely on the |
| 1755 | gl_state object. To make sure this object is not out of date, | 1882 | gl_state object. To make sure this object is not out of date, |
| 1756 | let's initialize it manually. | 1883 | let's initialize it manually. |
| 1757 | We ignore syntax-table text-properties for now, since that's | 1884 | We ignore syntax-table text-properties for now, since that's |
| @@ -2426,11 +2553,13 @@ between them, return t; otherwise return nil. */) | |||
| 2426 | } | 2553 | } |
| 2427 | 2554 | ||
| 2428 | /* Return syntax code of character C if C is an ASCII character | 2555 | /* Return syntax code of character C if C is an ASCII character |
| 2429 | or `multibyte_symbol_p' is zero. Otherwise, return Ssymbol. */ | 2556 | or if MULTIBYTE_SYMBOL_P is false. Otherwise, return Ssymbol. */ |
| 2430 | 2557 | ||
| 2431 | #define SYNTAX_WITH_MULTIBYTE_CHECK(c) \ | 2558 | static enum syntaxcode |
| 2432 | ((ASCII_CHAR_P (c) || !multibyte_symbol_p) \ | 2559 | syntax_multibyte (int c, bool multibyte_symbol_p) |
| 2433 | ? SYNTAX (c) : Ssymbol) | 2560 | { |
| 2561 | return ASCII_CHAR_P (c) || !multibyte_symbol_p ? SYNTAX (c) : Ssymbol; | ||
| 2562 | } | ||
| 2434 | 2563 | ||
| 2435 | static Lisp_Object | 2564 | static Lisp_Object |
| 2436 | scan_lists (EMACS_INT from, EMACS_INT count, EMACS_INT depth, bool sexpflag) | 2565 | scan_lists (EMACS_INT from, EMACS_INT count, EMACS_INT depth, bool sexpflag) |
| @@ -2441,7 +2570,7 @@ scan_lists (EMACS_INT from, EMACS_INT count, EMACS_INT depth, bool sexpflag) | |||
| 2441 | int stringterm; | 2570 | int stringterm; |
| 2442 | bool quoted; | 2571 | bool quoted; |
| 2443 | bool mathexit = 0; | 2572 | bool mathexit = 0; |
| 2444 | enum syntaxcode code, temp_code, c_code; | 2573 | enum syntaxcode code; |
| 2445 | EMACS_INT min_depth = depth; /* Err out if depth gets less than this. */ | 2574 | EMACS_INT min_depth = depth; /* Err out if depth gets less than this. */ |
| 2446 | int comstyle = 0; /* style of comment encountered */ | 2575 | int comstyle = 0; /* style of comment encountered */ |
| 2447 | bool comnested = 0; /* whether the comment is nestable or not */ | 2576 | bool comnested = 0; /* whether the comment is nestable or not */ |
| @@ -2473,7 +2602,7 @@ scan_lists (EMACS_INT from, EMACS_INT count, EMACS_INT depth, bool sexpflag) | |||
| 2473 | UPDATE_SYNTAX_TABLE_FORWARD (from); | 2602 | UPDATE_SYNTAX_TABLE_FORWARD (from); |
| 2474 | c = FETCH_CHAR_AS_MULTIBYTE (from_byte); | 2603 | c = FETCH_CHAR_AS_MULTIBYTE (from_byte); |
| 2475 | syntax = SYNTAX_WITH_FLAGS (c); | 2604 | syntax = SYNTAX_WITH_FLAGS (c); |
| 2476 | code = SYNTAX_WITH_MULTIBYTE_CHECK (c); | 2605 | code = syntax_multibyte (c, multibyte_symbol_p); |
| 2477 | comstart_first = SYNTAX_FLAGS_COMSTART_FIRST (syntax); | 2606 | comstart_first = SYNTAX_FLAGS_COMSTART_FIRST (syntax); |
| 2478 | comnested = SYNTAX_FLAGS_COMMENT_NESTED (syntax); | 2607 | comnested = SYNTAX_FLAGS_COMMENT_NESTED (syntax); |
| 2479 | comstyle = SYNTAX_FLAGS_COMMENT_STYLE (syntax, 0); | 2608 | comstyle = SYNTAX_FLAGS_COMMENT_STYLE (syntax, 0); |
| @@ -2519,10 +2648,8 @@ scan_lists (EMACS_INT from, EMACS_INT count, EMACS_INT depth, bool sexpflag) | |||
| 2519 | { | 2648 | { |
| 2520 | UPDATE_SYNTAX_TABLE_FORWARD (from); | 2649 | UPDATE_SYNTAX_TABLE_FORWARD (from); |
| 2521 | 2650 | ||
| 2522 | /* Some compilers can't handle this inside the switch. */ | ||
| 2523 | c = FETCH_CHAR_AS_MULTIBYTE (from_byte); | 2651 | c = FETCH_CHAR_AS_MULTIBYTE (from_byte); |
| 2524 | c_code = SYNTAX_WITH_MULTIBYTE_CHECK (c); | 2652 | switch (syntax_multibyte (c, multibyte_symbol_p)) |
| 2525 | switch (c_code) | ||
| 2526 | { | 2653 | { |
| 2527 | case Scharquote: | 2654 | case Scharquote: |
| 2528 | case Sescape: | 2655 | case Sescape: |
| @@ -2594,18 +2721,17 @@ scan_lists (EMACS_INT from, EMACS_INT count, EMACS_INT depth, bool sexpflag) | |||
| 2594 | stringterm = FETCH_CHAR_AS_MULTIBYTE (temp_pos); | 2721 | stringterm = FETCH_CHAR_AS_MULTIBYTE (temp_pos); |
| 2595 | while (1) | 2722 | while (1) |
| 2596 | { | 2723 | { |
| 2724 | enum syntaxcode c_code; | ||
| 2597 | if (from >= stop) | 2725 | if (from >= stop) |
| 2598 | goto lose; | 2726 | goto lose; |
| 2599 | UPDATE_SYNTAX_TABLE_FORWARD (from); | 2727 | UPDATE_SYNTAX_TABLE_FORWARD (from); |
| 2600 | c = FETCH_CHAR_AS_MULTIBYTE (from_byte); | 2728 | c = FETCH_CHAR_AS_MULTIBYTE (from_byte); |
| 2729 | c_code = syntax_multibyte (c, multibyte_symbol_p); | ||
| 2601 | if (code == Sstring | 2730 | if (code == Sstring |
| 2602 | ? (c == stringterm | 2731 | ? c == stringterm && c_code == Sstring |
| 2603 | && SYNTAX_WITH_MULTIBYTE_CHECK (c) == Sstring) | 2732 | : c_code == Sstring_fence) |
| 2604 | : SYNTAX_WITH_MULTIBYTE_CHECK (c) == Sstring_fence) | ||
| 2605 | break; | 2733 | break; |
| 2606 | 2734 | ||
| 2607 | /* Some compilers can't handle this inside the switch. */ | ||
| 2608 | c_code = SYNTAX_WITH_MULTIBYTE_CHECK (c); | ||
| 2609 | switch (c_code) | 2735 | switch (c_code) |
| 2610 | { | 2736 | { |
| 2611 | case Scharquote: | 2737 | case Scharquote: |
| @@ -2644,7 +2770,7 @@ scan_lists (EMACS_INT from, EMACS_INT count, EMACS_INT depth, bool sexpflag) | |||
| 2644 | UPDATE_SYNTAX_TABLE_BACKWARD (from); | 2770 | UPDATE_SYNTAX_TABLE_BACKWARD (from); |
| 2645 | c = FETCH_CHAR_AS_MULTIBYTE (from_byte); | 2771 | c = FETCH_CHAR_AS_MULTIBYTE (from_byte); |
| 2646 | syntax= SYNTAX_WITH_FLAGS (c); | 2772 | syntax= SYNTAX_WITH_FLAGS (c); |
| 2647 | code = SYNTAX_WITH_MULTIBYTE_CHECK (c); | 2773 | code = syntax_multibyte (c, multibyte_symbol_p); |
| 2648 | if (depth == min_depth) | 2774 | if (depth == min_depth) |
| 2649 | last_good = from; | 2775 | last_good = from; |
| 2650 | comstyle = 0; | 2776 | comstyle = 0; |
| @@ -2697,9 +2823,8 @@ scan_lists (EMACS_INT from, EMACS_INT count, EMACS_INT depth, bool sexpflag) | |||
| 2697 | temp_pos--; | 2823 | temp_pos--; |
| 2698 | UPDATE_SYNTAX_TABLE_BACKWARD (from - 1); | 2824 | UPDATE_SYNTAX_TABLE_BACKWARD (from - 1); |
| 2699 | c1 = FETCH_CHAR_AS_MULTIBYTE (temp_pos); | 2825 | c1 = FETCH_CHAR_AS_MULTIBYTE (temp_pos); |
| 2700 | temp_code = SYNTAX_WITH_MULTIBYTE_CHECK (c1); | ||
| 2701 | /* Don't allow comment-end to be quoted. */ | 2826 | /* Don't allow comment-end to be quoted. */ |
| 2702 | if (temp_code == Sendcomment) | 2827 | if (syntax_multibyte (c1, multibyte_symbol_p) == Sendcomment) |
| 2703 | goto done2; | 2828 | goto done2; |
| 2704 | quoted = char_quoted (from - 1, temp_pos); | 2829 | quoted = char_quoted (from - 1, temp_pos); |
| 2705 | if (quoted) | 2830 | if (quoted) |
| @@ -2709,11 +2834,12 @@ scan_lists (EMACS_INT from, EMACS_INT count, EMACS_INT depth, bool sexpflag) | |||
| 2709 | UPDATE_SYNTAX_TABLE_BACKWARD (from - 1); | 2834 | UPDATE_SYNTAX_TABLE_BACKWARD (from - 1); |
| 2710 | } | 2835 | } |
| 2711 | c1 = FETCH_CHAR_AS_MULTIBYTE (temp_pos); | 2836 | c1 = FETCH_CHAR_AS_MULTIBYTE (temp_pos); |
| 2712 | temp_code = SYNTAX_WITH_MULTIBYTE_CHECK (c1); | 2837 | if (! quoted) |
| 2713 | if (! (quoted || temp_code == Sword | 2838 | switch (syntax_multibyte (c1, multibyte_symbol_p)) |
| 2714 | || temp_code == Ssymbol | 2839 | { |
| 2715 | || temp_code == Squote)) | 2840 | case Sword: case Ssymbol: case Squote: break; |
| 2716 | goto done2; | 2841 | default: goto done2; |
| 2842 | } | ||
| 2717 | DEC_BOTH (from, from_byte); | 2843 | DEC_BOTH (from, from_byte); |
| 2718 | } | 2844 | } |
| 2719 | goto done2; | 2845 | goto done2; |
| @@ -2768,10 +2894,12 @@ scan_lists (EMACS_INT from, EMACS_INT count, EMACS_INT depth, bool sexpflag) | |||
| 2768 | goto lose; | 2894 | goto lose; |
| 2769 | DEC_BOTH (from, from_byte); | 2895 | DEC_BOTH (from, from_byte); |
| 2770 | UPDATE_SYNTAX_TABLE_BACKWARD (from); | 2896 | UPDATE_SYNTAX_TABLE_BACKWARD (from); |
| 2771 | if (!char_quoted (from, from_byte) | 2897 | if (!char_quoted (from, from_byte)) |
| 2772 | && (c = FETCH_CHAR_AS_MULTIBYTE (from_byte), | 2898 | { |
| 2773 | SYNTAX_WITH_MULTIBYTE_CHECK (c) == code)) | 2899 | c = FETCH_CHAR_AS_MULTIBYTE (from_byte); |
| 2774 | break; | 2900 | if (syntax_multibyte (c, multibyte_symbol_p) == code) |
| 2901 | break; | ||
| 2902 | } | ||
| 2775 | } | 2903 | } |
| 2776 | if (code == Sstring_fence && !depth && sexpflag) goto done2; | 2904 | if (code == Sstring_fence && !depth && sexpflag) goto done2; |
| 2777 | break; | 2905 | break; |
| @@ -2784,11 +2912,14 @@ scan_lists (EMACS_INT from, EMACS_INT count, EMACS_INT depth, bool sexpflag) | |||
| 2784 | goto lose; | 2912 | goto lose; |
| 2785 | DEC_BOTH (from, from_byte); | 2913 | DEC_BOTH (from, from_byte); |
| 2786 | UPDATE_SYNTAX_TABLE_BACKWARD (from); | 2914 | UPDATE_SYNTAX_TABLE_BACKWARD (from); |
| 2787 | if (!char_quoted (from, from_byte) | 2915 | if (!char_quoted (from, from_byte)) |
| 2788 | && (stringterm | 2916 | { |
| 2789 | == (c = FETCH_CHAR_AS_MULTIBYTE (from_byte))) | 2917 | c = FETCH_CHAR_AS_MULTIBYTE (from_byte); |
| 2790 | && SYNTAX_WITH_MULTIBYTE_CHECK (c) == Sstring) | 2918 | if (c == stringterm |
| 2791 | break; | 2919 | && (syntax_multibyte (c, multibyte_symbol_p) |
| 2920 | == Sstring)) | ||
| 2921 | break; | ||
| 2922 | } | ||
| 2792 | } | 2923 | } |
| 2793 | if (!depth && sexpflag) goto done2; | 2924 | if (!depth && sexpflag) goto done2; |
| 2794 | break; | 2925 | break; |
| @@ -2894,7 +3025,7 @@ This includes chars with "quote" or "prefix" syntax (' or p). */) | |||
| 2894 | while (!char_quoted (pos, pos_byte) | 3025 | while (!char_quoted (pos, pos_byte) |
| 2895 | /* Previous statement updates syntax table. */ | 3026 | /* Previous statement updates syntax table. */ |
| 2896 | && ((c = FETCH_CHAR_AS_MULTIBYTE (pos_byte), SYNTAX (c) == Squote) | 3027 | && ((c = FETCH_CHAR_AS_MULTIBYTE (pos_byte), SYNTAX (c) == Squote) |
| 2897 | || SYNTAX_PREFIX (c))) | 3028 | || syntax_prefix_flag_p (c))) |
| 2898 | { | 3029 | { |
| 2899 | opoint = pos; | 3030 | opoint = pos; |
| 2900 | opoint_byte = pos_byte; | 3031 | opoint_byte = pos_byte; |
| @@ -3117,10 +3248,8 @@ do { prev_from = from; \ | |||
| 3117 | symstarted: | 3248 | symstarted: |
| 3118 | while (from < end) | 3249 | while (from < end) |
| 3119 | { | 3250 | { |
| 3120 | /* Some compilers can't handle this inside the switch. */ | ||
| 3121 | int symchar = FETCH_CHAR_AS_MULTIBYTE (from_byte); | 3251 | int symchar = FETCH_CHAR_AS_MULTIBYTE (from_byte); |
| 3122 | enum syntaxcode symcharcode = SYNTAX (symchar); | 3252 | switch (SYNTAX (symchar)) |
| 3123 | switch (symcharcode) | ||
| 3124 | { | 3253 | { |
| 3125 | case Scharquote: | 3254 | case Scharquote: |
| 3126 | case Sescape: | 3255 | case Sescape: |
| @@ -3206,7 +3335,6 @@ do { prev_from = from; \ | |||
| 3206 | 3335 | ||
| 3207 | if (from >= end) goto done; | 3336 | if (from >= end) goto done; |
| 3208 | c = FETCH_CHAR_AS_MULTIBYTE (from_byte); | 3337 | c = FETCH_CHAR_AS_MULTIBYTE (from_byte); |
| 3209 | /* Some compilers can't handle this inside the switch. */ | ||
| 3210 | c_code = SYNTAX (c); | 3338 | c_code = SYNTAX (c); |
| 3211 | 3339 | ||
| 3212 | /* Check C_CODE here so that if the char has | 3340 | /* Check C_CODE here so that if the char has |
diff --git a/src/syntax.h b/src/syntax.h index 58d39b9059c..1b96284af42 100644 --- a/src/syntax.h +++ b/src/syntax.h | |||
| @@ -18,6 +18,10 @@ GNU General Public License for more details. | |||
| 18 | You should have received a copy of the GNU General Public License | 18 | You should have received a copy of the GNU General Public License |
| 19 | along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | 19 | along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ |
| 20 | 20 | ||
| 21 | INLINE_HEADER_BEGIN | ||
| 22 | #ifndef SYNTAX_INLINE | ||
| 23 | # define SYNTAX_INLINE INLINE | ||
| 24 | #endif | ||
| 21 | 25 | ||
| 22 | extern void update_syntax_table (ptrdiff_t, EMACS_INT, bool, Lisp_Object); | 26 | extern void update_syntax_table (ptrdiff_t, EMACS_INT, bool, Lisp_Object); |
| 23 | 27 | ||
| @@ -54,79 +58,64 @@ enum syntaxcode | |||
| 54 | Smax /* Upper bound on codes that are meaningful */ | 58 | Smax /* Upper bound on codes that are meaningful */ |
| 55 | }; | 59 | }; |
| 56 | 60 | ||
| 57 | /* Set the syntax entry VAL for char C in table TABLE. */ | ||
| 58 | |||
| 59 | #define SET_RAW_SYNTAX_ENTRY(table, c, val) \ | ||
| 60 | CHAR_TABLE_SET ((table), c, (val)) | ||
| 61 | 61 | ||
| 62 | /* Set the syntax entry VAL for char-range RANGE in table TABLE. | 62 | struct gl_state_s |
| 63 | RANGE is a cons (FROM . TO) specifying the range of characters. */ | 63 | { |
| 64 | Lisp_Object object; /* The object we are scanning. */ | ||
| 65 | ptrdiff_t start; /* Where to stop. */ | ||
| 66 | ptrdiff_t stop; /* Where to stop. */ | ||
| 67 | bool use_global; /* Whether to use global_code | ||
| 68 | or c_s_t. */ | ||
| 69 | Lisp_Object global_code; /* Syntax code of current char. */ | ||
| 70 | Lisp_Object current_syntax_table; /* Syntax table for current pos. */ | ||
| 71 | Lisp_Object old_prop; /* Syntax-table prop at prev pos. */ | ||
| 72 | ptrdiff_t b_property; /* First index where c_s_t is valid. */ | ||
| 73 | ptrdiff_t e_property; /* First index where c_s_t is | ||
| 74 | not valid. */ | ||
| 75 | INTERVAL forward_i; /* Where to start lookup on forward */ | ||
| 76 | INTERVAL backward_i; /* or backward movement. The | ||
| 77 | data in c_s_t is valid | ||
| 78 | between these intervals, | ||
| 79 | and possibly at the | ||
| 80 | intervals too, depending | ||
| 81 | on: */ | ||
| 82 | /* Offset for positions specified to UPDATE_SYNTAX_TABLE. */ | ||
| 83 | ptrdiff_t offset; | ||
| 84 | }; | ||
| 64 | 85 | ||
| 65 | #define SET_RAW_SYNTAX_ENTRY_RANGE(table, range, val) \ | 86 | extern struct gl_state_s gl_state; |
| 66 | Fset_char_table_range ((table), (range), (val)) | ||
| 67 | 87 | ||
| 68 | /* SYNTAX_ENTRY fetches the information from the entry for character C | 88 | /* Fetch the information from the entry for character C |
| 69 | in syntax table TABLE, or from globally kept data (gl_state). | 89 | in syntax table TABLE, or from globally kept data (gl_state). |
| 70 | Does inheritance. */ | 90 | Does inheritance. */ |
| 71 | /* CURRENT_SYNTAX_TABLE gives the syntax table valid for current | ||
| 72 | position, it is either the buffer's syntax table, or syntax table | ||
| 73 | found in text properties. */ | ||
| 74 | 91 | ||
| 92 | SYNTAX_INLINE Lisp_Object | ||
| 93 | SYNTAX_ENTRY (int c) | ||
| 94 | { | ||
| 75 | #ifdef SYNTAX_ENTRY_VIA_PROPERTY | 95 | #ifdef SYNTAX_ENTRY_VIA_PROPERTY |
| 76 | # define SYNTAX_ENTRY(c) \ | 96 | return (gl_state.use_global |
| 77 | (gl_state.use_global ? gl_state.global_code : SYNTAX_ENTRY_INT (c)) | 97 | ? gl_state.global_code |
| 78 | # define CURRENT_SYNTAX_TABLE gl_state.current_syntax_table | 98 | : CHAR_TABLE_REF (gl_state.current_syntax_table, c)); |
| 79 | #else | 99 | #else |
| 80 | # define SYNTAX_ENTRY SYNTAX_ENTRY_INT | 100 | return CHAR_TABLE_REF (BVAR (current_buffer, syntax_table), c); |
| 81 | # define CURRENT_SYNTAX_TABLE BVAR (current_buffer, syntax_table) | ||
| 82 | #endif | 101 | #endif |
| 83 | 102 | } | |
| 84 | #define SYNTAX_ENTRY_INT(c) CHAR_TABLE_REF (CURRENT_SYNTAX_TABLE, (c)) | ||
| 85 | 103 | ||
| 86 | /* Extract the information from the entry for character C | 104 | /* Extract the information from the entry for character C |
| 87 | in the current syntax table. */ | 105 | in the current syntax table. */ |
| 88 | 106 | ||
| 89 | #ifdef __GNUC__ | 107 | SYNTAX_INLINE int |
| 90 | #define SYNTAX(c) \ | 108 | SYNTAX_WITH_FLAGS (int c) |
| 91 | ({ Lisp_Object _syntax_temp; \ | 109 | { |
| 92 | _syntax_temp = SYNTAX_ENTRY (c); \ | 110 | Lisp_Object ent = SYNTAX_ENTRY (c); |
| 93 | (CONSP (_syntax_temp) \ | 111 | return CONSP (ent) ? XINT (XCAR (ent)) : Swhitespace; |
| 94 | ? (enum syntaxcode) (XINT (XCAR (_syntax_temp)) & 0xff) \ | 112 | } |
| 95 | : Swhitespace); }) | 113 | |
| 96 | 114 | SYNTAX_INLINE enum syntaxcode | |
| 97 | #define SYNTAX_WITH_FLAGS(c) \ | 115 | SYNTAX (int c) |
| 98 | ({ Lisp_Object _syntax_temp; \ | 116 | { |
| 99 | _syntax_temp = SYNTAX_ENTRY (c); \ | 117 | return SYNTAX_WITH_FLAGS (c) & 0xff; |
| 100 | (CONSP (_syntax_temp) \ | 118 | } |
| 101 | ? XINT (XCAR (_syntax_temp)) \ | ||
| 102 | : Swhitespace); }) | ||
| 103 | |||
| 104 | #define SYNTAX_MATCH(c) \ | ||
| 105 | ({ Lisp_Object _syntax_temp; \ | ||
| 106 | _syntax_temp = SYNTAX_ENTRY (c); \ | ||
| 107 | (CONSP (_syntax_temp) \ | ||
| 108 | ? XCDR (_syntax_temp) \ | ||
| 109 | : Qnil); }) | ||
| 110 | #else | ||
| 111 | extern Lisp_Object syntax_temp; | ||
| 112 | #define SYNTAX(c) \ | ||
| 113 | (syntax_temp = SYNTAX_ENTRY ((c)), \ | ||
| 114 | (CONSP (syntax_temp) \ | ||
| 115 | ? (enum syntaxcode) (XINT (XCAR (syntax_temp)) & 0xff) \ | ||
| 116 | : Swhitespace)) | ||
| 117 | |||
| 118 | #define SYNTAX_WITH_FLAGS(c) \ | ||
| 119 | (syntax_temp = SYNTAX_ENTRY ((c)), \ | ||
| 120 | (CONSP (syntax_temp) \ | ||
| 121 | ? XINT (XCAR (syntax_temp)) \ | ||
| 122 | : Swhitespace)) | ||
| 123 | |||
| 124 | #define SYNTAX_MATCH(c) \ | ||
| 125 | (syntax_temp = SYNTAX_ENTRY ((c)), \ | ||
| 126 | (CONSP (syntax_temp) \ | ||
| 127 | ? XCDR (syntax_temp) \ | ||
| 128 | : Qnil)) | ||
| 129 | #endif | ||
| 130 | 119 | ||
| 131 | 120 | ||
| 132 | /* Whether the syntax of the character C has the prefix flag set. */ | 121 | /* Whether the syntax of the character C has the prefix flag set. */ |
| @@ -145,158 +134,65 @@ extern char const syntax_code_spec[16]; | |||
| 145 | /* Convert the byte offset BYTEPOS into a character position, | 134 | /* Convert the byte offset BYTEPOS into a character position, |
| 146 | for the object recorded in gl_state with SETUP_SYNTAX_TABLE_FOR_OBJECT. | 135 | for the object recorded in gl_state with SETUP_SYNTAX_TABLE_FOR_OBJECT. |
| 147 | 136 | ||
| 148 | The value is meant for use in the UPDATE_SYNTAX_TABLE... macros. | 137 | The value is meant for use in code that does nothing when |
| 149 | These macros do nothing when parse_sexp_lookup_properties is 0, | 138 | parse_sexp_lookup_properties is 0, so return 0 in that case, for speed. */ |
| 150 | so we return 0 in that case, for speed. */ | 139 | |
| 151 | 140 | SYNTAX_INLINE ptrdiff_t | |
| 152 | #define SYNTAX_TABLE_BYTE_TO_CHAR(bytepos) \ | 141 | SYNTAX_TABLE_BYTE_TO_CHAR (ptrdiff_t bytepos) |
| 153 | (! parse_sexp_lookup_properties \ | 142 | { |
| 154 | ? 0 \ | 143 | return (! parse_sexp_lookup_properties |
| 155 | : STRINGP (gl_state.object) \ | 144 | ? 0 |
| 156 | ? string_byte_to_char (gl_state.object, (bytepos)) \ | 145 | : STRINGP (gl_state.object) |
| 157 | : BUFFERP (gl_state.object) \ | 146 | ? string_byte_to_char (gl_state.object, bytepos) |
| 158 | ? buf_bytepos_to_charpos (XBUFFER (gl_state.object), \ | 147 | : BUFFERP (gl_state.object) |
| 159 | (bytepos) + BUF_BEGV_BYTE (XBUFFER (gl_state.object)) - 1) - BUF_BEGV (XBUFFER (gl_state.object)) + 1 \ | 148 | ? ((buf_bytepos_to_charpos |
| 160 | : NILP (gl_state.object) \ | 149 | (XBUFFER (gl_state.object), |
| 161 | ? BYTE_TO_CHAR ((bytepos) + BEGV_BYTE - 1) - BEGV + 1 \ | 150 | (bytepos + BUF_BEGV_BYTE (XBUFFER (gl_state.object)) - 1))) |
| 162 | : (bytepos)) | 151 | - BUF_BEGV (XBUFFER (gl_state.object)) + 1) |
| 152 | : NILP (gl_state.object) | ||
| 153 | ? BYTE_TO_CHAR (bytepos + BEGV_BYTE - 1) - BEGV + 1 | ||
| 154 | : bytepos); | ||
| 155 | } | ||
| 163 | 156 | ||
| 164 | /* Make syntax table state (gl_state) good for CHARPOS, assuming it is | 157 | /* Make syntax table state (gl_state) good for CHARPOS, assuming it is |
| 165 | currently good for a position before CHARPOS. */ | 158 | currently good for a position before CHARPOS. */ |
| 166 | 159 | ||
| 167 | #define UPDATE_SYNTAX_TABLE_FORWARD(charpos) \ | 160 | SYNTAX_INLINE void |
| 168 | (parse_sexp_lookup_properties \ | 161 | UPDATE_SYNTAX_TABLE_FORWARD (ptrdiff_t charpos) |
| 169 | && (charpos) >= gl_state.e_property \ | 162 | { |
| 170 | ? (update_syntax_table ((charpos) + gl_state.offset, 1, 0, \ | 163 | if (parse_sexp_lookup_properties && charpos >= gl_state.e_property) |
| 171 | gl_state.object), \ | 164 | update_syntax_table (charpos + gl_state.offset, 1, 0, gl_state.object); |
| 172 | 1) \ | 165 | } |
| 173 | : 0) | ||
| 174 | 166 | ||
| 175 | /* Make syntax table state (gl_state) good for CHARPOS, assuming it is | 167 | /* Make syntax table state (gl_state) good for CHARPOS, assuming it is |
| 176 | currently good for a position after CHARPOS. */ | 168 | currently good for a position after CHARPOS. */ |
| 177 | 169 | ||
| 178 | #define UPDATE_SYNTAX_TABLE_BACKWARD(charpos) \ | 170 | SYNTAX_INLINE void |
| 179 | (parse_sexp_lookup_properties \ | 171 | UPDATE_SYNTAX_TABLE_BACKWARD (ptrdiff_t charpos) |
| 180 | && (charpos) < gl_state.b_property \ | 172 | { |
| 181 | ? (update_syntax_table ((charpos) + gl_state.offset, -1, 0, \ | 173 | if (parse_sexp_lookup_properties && charpos < gl_state.b_property) |
| 182 | gl_state.object), \ | 174 | update_syntax_table (charpos + gl_state.offset, -1, 0, gl_state.object); |
| 183 | 1) \ | 175 | } |
| 184 | : 0) | ||
| 185 | 176 | ||
| 186 | /* Make syntax table good for CHARPOS. */ | 177 | /* Make syntax table good for CHARPOS. */ |
| 187 | 178 | ||
| 188 | #define UPDATE_SYNTAX_TABLE(charpos) \ | 179 | SYNTAX_INLINE void |
| 189 | (parse_sexp_lookup_properties \ | 180 | UPDATE_SYNTAX_TABLE (ptrdiff_t charpos) |
| 190 | && (charpos) < gl_state.b_property \ | 181 | { |
| 191 | ? (update_syntax_table ((charpos) + gl_state.offset, -1, 0, \ | 182 | UPDATE_SYNTAX_TABLE_BACKWARD (charpos); |
| 192 | gl_state.object), \ | 183 | UPDATE_SYNTAX_TABLE_FORWARD (charpos); |
| 193 | 1) \ | 184 | } |
| 194 | : (parse_sexp_lookup_properties \ | 185 | |
| 195 | && (charpos) >= gl_state.e_property \ | 186 | /* Set up the buffer-global syntax table. */ |
| 196 | ? (update_syntax_table ((charpos) + gl_state.offset, 1, 0,\ | ||
| 197 | gl_state.object), \ | ||
| 198 | 1) \ | ||
| 199 | : 0)) | ||
| 200 | |||
| 201 | /* This macro sets up the buffer-global syntax table. */ | ||
| 202 | #define SETUP_BUFFER_SYNTAX_TABLE() \ | ||
| 203 | do \ | ||
| 204 | { \ | ||
| 205 | gl_state.use_global = 0; \ | ||
| 206 | gl_state.current_syntax_table = BVAR (current_buffer, syntax_table);\ | ||
| 207 | } while (0) | ||
| 208 | |||
| 209 | /* This macro should be called with FROM at the start of forward | ||
| 210 | search, or after the last position of the backward search. It | ||
| 211 | makes sure that the first char is picked up with correct table, so | ||
| 212 | one does not need to call UPDATE_SYNTAX_TABLE immediately after the | ||
| 213 | call. | ||
| 214 | Sign of COUNT gives the direction of the search. | ||
| 215 | */ | ||
| 216 | |||
| 217 | #define SETUP_SYNTAX_TABLE(FROM, COUNT) \ | ||
| 218 | do \ | ||
| 219 | { \ | ||
| 220 | SETUP_BUFFER_SYNTAX_TABLE (); \ | ||
| 221 | gl_state.b_property = BEGV; \ | ||
| 222 | gl_state.e_property = ZV + 1; \ | ||
| 223 | gl_state.object = Qnil; \ | ||
| 224 | gl_state.offset = 0; \ | ||
| 225 | if (parse_sexp_lookup_properties) \ | ||
| 226 | if ((COUNT) > 0 || (FROM) > BEGV) \ | ||
| 227 | update_syntax_table ((COUNT) > 0 ? (FROM) : (FROM) - 1, (COUNT),\ | ||
| 228 | 1, Qnil); \ | ||
| 229 | } \ | ||
| 230 | while (0) | ||
| 231 | |||
| 232 | /* Same as above, but in OBJECT. If OBJECT is nil, use current buffer. | ||
| 233 | If it is t (which is only used in fast_c_string_match_ignore_case), | ||
| 234 | ignore properties altogether. | ||
| 235 | |||
| 236 | This is meant for regex.c to use. For buffers, regex.c passes arguments | ||
| 237 | to the UPDATE_SYNTAX_TABLE macros which are relative to BEGV. | ||
| 238 | So if it is a buffer, we set the offset field to BEGV. */ | ||
| 239 | |||
| 240 | #define SETUP_SYNTAX_TABLE_FOR_OBJECT(OBJECT, FROM, COUNT) \ | ||
| 241 | do \ | ||
| 242 | { \ | ||
| 243 | SETUP_BUFFER_SYNTAX_TABLE (); \ | ||
| 244 | gl_state.object = (OBJECT); \ | ||
| 245 | if (BUFFERP (gl_state.object)) \ | ||
| 246 | { \ | ||
| 247 | struct buffer *buf = XBUFFER (gl_state.object); \ | ||
| 248 | gl_state.b_property = 1; \ | ||
| 249 | gl_state.e_property = BUF_ZV (buf) - BUF_BEGV (buf) + 1; \ | ||
| 250 | gl_state.offset = BUF_BEGV (buf) - 1; \ | ||
| 251 | } \ | ||
| 252 | else if (NILP (gl_state.object)) \ | ||
| 253 | { \ | ||
| 254 | gl_state.b_property = 1; \ | ||
| 255 | gl_state.e_property = ZV - BEGV + 1; \ | ||
| 256 | gl_state.offset = BEGV - 1; \ | ||
| 257 | } \ | ||
| 258 | else if (EQ (gl_state.object, Qt)) \ | ||
| 259 | { \ | ||
| 260 | gl_state.b_property = 0; \ | ||
| 261 | gl_state.e_property = PTRDIFF_MAX; \ | ||
| 262 | gl_state.offset = 0; \ | ||
| 263 | } \ | ||
| 264 | else \ | ||
| 265 | { \ | ||
| 266 | gl_state.b_property = 0; \ | ||
| 267 | gl_state.e_property = 1 + SCHARS (gl_state.object); \ | ||
| 268 | gl_state.offset = 0; \ | ||
| 269 | } \ | ||
| 270 | if (parse_sexp_lookup_properties) \ | ||
| 271 | update_syntax_table (((FROM) + gl_state.offset \ | ||
| 272 | + (COUNT > 0 ? 0 : -1)), \ | ||
| 273 | COUNT, 1, gl_state.object); \ | ||
| 274 | } \ | ||
| 275 | while (0) | ||
| 276 | 187 | ||
| 277 | struct gl_state_s | 188 | SYNTAX_INLINE void |
| 189 | SETUP_BUFFER_SYNTAX_TABLE (void) | ||
| 278 | { | 190 | { |
| 279 | Lisp_Object object; /* The object we are scanning. */ | 191 | gl_state.use_global = 0; |
| 280 | ptrdiff_t start; /* Where to stop. */ | 192 | gl_state.current_syntax_table = BVAR (current_buffer, syntax_table); |
| 281 | ptrdiff_t stop; /* Where to stop. */ | 193 | } |
| 282 | int use_global; /* Whether to use global_code | ||
| 283 | or c_s_t. */ | ||
| 284 | Lisp_Object global_code; /* Syntax code of current char. */ | ||
| 285 | Lisp_Object current_syntax_table; /* Syntax table for current pos. */ | ||
| 286 | Lisp_Object old_prop; /* Syntax-table prop at prev pos. */ | ||
| 287 | ptrdiff_t b_property; /* First index where c_s_t is valid. */ | ||
| 288 | ptrdiff_t e_property; /* First index where c_s_t is | ||
| 289 | not valid. */ | ||
| 290 | INTERVAL forward_i; /* Where to start lookup on forward */ | ||
| 291 | INTERVAL backward_i; /* or backward movement. The | ||
| 292 | data in c_s_t is valid | ||
| 293 | between these intervals, | ||
| 294 | and possibly at the | ||
| 295 | intervals too, depending | ||
| 296 | on: */ | ||
| 297 | /* Offset for positions specified to UPDATE_SYNTAX_TABLE. */ | ||
| 298 | ptrdiff_t offset; | ||
| 299 | }; | ||
| 300 | 194 | ||
| 301 | extern struct gl_state_s gl_state; | ||
| 302 | extern ptrdiff_t scan_words (ptrdiff_t, EMACS_INT); | 195 | extern ptrdiff_t scan_words (ptrdiff_t, EMACS_INT); |
| 196 | extern void SETUP_SYNTAX_TABLE_FOR_OBJECT (Lisp_Object, ptrdiff_t, ptrdiff_t); | ||
| 197 | |||
| 198 | INLINE_HEADER_END | ||