From: Stefan Monnier Date: Tue, 3 Oct 2006 13:18:24 +0000 (+0000) Subject: Remove file local variables. X-Git-Tag: emacs-pretest-22.0.90~252 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1351dd3b9a76d557c6795b84f77fd738839bffbc;p=emacs.git Remove file local variables. (struct re_pattern_buffer): New field `used_syntax'. --- 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 /* 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 @@ extern void re_set_whitespace_regexp (const char *regexp); #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) */