diff options
| author | Stefan Monnier | 2006-10-03 13:18:24 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2006-10-03 13:18:24 +0000 |
| commit | 1351dd3b9a76d557c6795b84f77fd738839bffbc (patch) | |
| tree | fa825b554b756c997d266a5523cf800bc5c6b199 /src | |
| parent | fcecceea0fd32073e8d0496ca841e6db8b18b2ad (diff) | |
| download | emacs-1351dd3b9a76d557c6795b84f77fd738839bffbc.tar.gz emacs-1351dd3b9a76d557c6795b84f77fd738839bffbc.zip | |
Remove file local variables.
(struct re_pattern_buffer): New field `used_syntax'.
Diffstat (limited to 'src')
| -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 c850c640b36..14817c35e90 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 `buffer' should be recognized as a | 400 | /* If true, multi-byte form in the `buffer' should be recognized as a |
| 397 | multibyte character. */ | 401 | multibyte character. */ |
| @@ -614,13 +618,5 @@ extern void re_set_whitespace_regexp (const char *regexp); | |||
| 614 | 618 | ||
| 615 | #endif /* regex.h */ | 619 | #endif /* regex.h */ |
| 616 | 620 | ||
| 617 | /* | ||
| 618 | Local variables: | ||
| 619 | make-backup-files: t | ||
| 620 | version-control: t | ||
| 621 | trim-versions-without-asking: nil | ||
| 622 | End: | ||
| 623 | */ | ||
| 624 | |||
| 625 | /* arch-tag: bda6e3ec-3c02-4237-a55a-01ad2e120083 | 621 | /* arch-tag: bda6e3ec-3c02-4237-a55a-01ad2e120083 |
| 626 | (do not change this comment) */ | 622 | (do not change this comment) */ |