diff options
Diffstat (limited to 'src/regex.h')
| -rw-r--r-- | src/regex.h | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/src/regex.h b/src/regex.h index efae7749f31..e065c597d49 100644 --- a/src/regex.h +++ b/src/regex.h | |||
| @@ -392,6 +392,10 @@ struct re_pattern_buffer | |||
| 392 | /* Similarly for an end-of-line anchor. */ | 392 | /* Similarly for an end-of-line anchor. */ |
| 393 | unsigned not_eol : 1; | 393 | unsigned not_eol : 1; |
| 394 | 394 | ||
| 395 | /* If true, the compilation of the pattern had to look up the syntax table, | ||
| 396 | so the compiled pattern is only valid for the current syntax table. */ | ||
| 397 | unsigned used_syntax : 1; | ||
| 398 | |||
| 395 | #ifdef emacs | 399 | #ifdef emacs |
| 396 | /* If true, multi-byte form in the regexp pattern should be | 400 | /* If true, multi-byte form in the regexp pattern should be |
| 397 | recognized as a multibyte character. When the pattern is | 401 | recognized as a multibyte character. When the pattern is |
| @@ -620,13 +624,5 @@ extern void re_set_whitespace_regexp (const char *regexp); | |||
| 620 | 624 | ||
| 621 | #endif /* regex.h */ | 625 | #endif /* regex.h */ |
| 622 | 626 | ||
| 623 | /* | ||
| 624 | Local variables: | ||
| 625 | make-backup-files: t | ||
| 626 | version-control: t | ||
| 627 | trim-versions-without-asking: nil | ||
| 628 | End: | ||
| 629 | */ | ||
| 630 | |||
| 631 | /* arch-tag: bda6e3ec-3c02-4237-a55a-01ad2e120083 | 627 | /* arch-tag: bda6e3ec-3c02-4237-a55a-01ad2e120083 |
| 632 | (do not change this comment) */ | 628 | (do not change this comment) */ |