aboutsummaryrefslogtreecommitdiffstats
path: root/src/regex.h
diff options
context:
space:
mode:
authorMiles Bader2006-10-15 02:54:13 +0000
committerMiles Bader2006-10-15 02:54:13 +0000
commitbb9c4b4f8b3dcd1b5fc96d2d0275cc532832fbd6 (patch)
tree8c4ae9640abcb8f33326e96e661f711417e5307c /src/regex.h
parent5be4d5336db8be316100a5b80ee8c5e428438b9e (diff)
parent92edaeeda5c362acf2c7e7f72b3666ab7673699a (diff)
downloademacs-bb9c4b4f8b3dcd1b5fc96d2d0275cc532832fbd6.tar.gz
emacs-bb9c4b4f8b3dcd1b5fc96d2d0275cc532832fbd6.zip
Merge from emacs--devo--0
Patches applied: * emacs--devo--0 (patch 460-475) - Update from CVS - Merge from gnus--rel--5.10 * gnus--rel--5.10 (patch 145-152) - Merge from emacs--devo--0 - Update from CVS Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-118
Diffstat (limited to 'src/regex.h')
-rw-r--r--src/regex.h12
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/*
624Local variables:
625make-backup-files: t
626version-control: t
627trim-versions-without-asking: nil
628End:
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) */