# HG changeset patch # User Stefan Monnier # Date 1159881504 0 # Node ID 636e0875704e9b38fa935a4ba1319c5b5e312e88 # Parent 79c3587798b4168157455ac28fe43eefd54115fa Remove file local variables. (struct re_pattern_buffer): New field `used_syntax'. diff -r 79c3587798b4 -r 636e0875704e src/regex.h --- a/src/regex.h Tue Oct 03 09:19:17 2006 +0000 +++ b/src/regex.h Tue Oct 03 13:18:24 2006 +0000 @@ -392,6 +392,10 @@ /* Similarly for an end-of-line anchor. */ unsigned not_eol : 1; + /* If true, the compilation of the pattern had to look up the syntax table, + so the compiled pattern is only valid for the current syntax table. */ + unsigned used_syntax : 1; + #ifdef emacs /* If true, multi-byte form in the `buffer' should be recognized as a multibyte character. */ @@ -614,13 +618,5 @@ #endif /* regex.h */ -/* -Local variables: -make-backup-files: t -version-control: t -trim-versions-without-asking: nil -End: -*/ - /* arch-tag: bda6e3ec-3c02-4237-a55a-01ad2e120083 (do not change this comment) */