diff options
| author | Paul Eggert | 2011-04-19 07:46:13 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-04-19 07:46:13 -0700 |
| commit | 0a20c80c9cee34a71b975bb37ac811bd339eaf9f (patch) | |
| tree | 5dc019993c292129df8916c61ed608f0094b7b37 /src/syntax.h | |
| parent | ec8df74431a76616a83806e1c1f4a094731a3f77 (diff) | |
| parent | 06b605171f1c9d8b42bd3326a243b8b03d2e4e58 (diff) | |
| download | emacs-0a20c80c9cee34a71b975bb37ac811bd339eaf9f.tar.gz emacs-0a20c80c9cee34a71b975bb37ac811bd339eaf9f.zip | |
Merge from mainline.
Diffstat (limited to 'src/syntax.h')
| -rw-r--r-- | src/syntax.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/syntax.h b/src/syntax.h index 9f328f568c7..42d689cb96c 100644 --- a/src/syntax.h +++ b/src/syntax.h | |||
| @@ -203,7 +203,7 @@ extern char syntax_code_spec[16]; | |||
| 203 | do \ | 203 | do \ |
| 204 | { \ | 204 | { \ |
| 205 | gl_state.use_global = 0; \ | 205 | gl_state.use_global = 0; \ |
| 206 | gl_state.current_syntax_table = BVAR (current_buffer, syntax_table); \ | 206 | gl_state.current_syntax_table = BVAR (current_buffer, syntax_table);\ |
| 207 | } while (0) | 207 | } while (0) |
| 208 | 208 | ||
| 209 | /* This macro should be called with FROM at the start of forward | 209 | /* This macro should be called with FROM at the start of forward |
| @@ -230,7 +230,8 @@ do \ | |||
| 230 | while (0) | 230 | while (0) |
| 231 | 231 | ||
| 232 | /* Same as above, but in OBJECT. If OBJECT is nil, use current buffer. | 232 | /* Same as above, but in OBJECT. If OBJECT is nil, use current buffer. |
| 233 | If it is t, ignore properties altogether. | 233 | If it is t (which is only used in fast_c_string_match_ignore_case), |
| 234 | ignore properties altogether. | ||
| 234 | 235 | ||
| 235 | This is meant for regex.c to use. For buffers, regex.c passes arguments | 236 | This is meant for regex.c to use. For buffers, regex.c passes arguments |
| 236 | to the UPDATE_SYNTAX_TABLE macros which are relative to BEGV. | 237 | to the UPDATE_SYNTAX_TABLE macros which are relative to BEGV. |
| @@ -257,7 +258,7 @@ do \ | |||
| 257 | else if (EQ (gl_state.object, Qt)) \ | 258 | else if (EQ (gl_state.object, Qt)) \ |
| 258 | { \ | 259 | { \ |
| 259 | gl_state.b_property = 0; \ | 260 | gl_state.b_property = 0; \ |
| 260 | gl_state.e_property = 1500000000; \ | 261 | gl_state.e_property = MOST_POSITIVE_FIXNUM; \ |
| 261 | gl_state.offset = 0; \ | 262 | gl_state.offset = 0; \ |
| 262 | } \ | 263 | } \ |
| 263 | else \ | 264 | else \ |