--- code/trunk/pcre_maketables.c 2007/02/24 21:41:34 91 +++ code/trunk/pcre_maketables.c 2007/07/31 14:39:09 199 @@ -6,7 +6,7 @@ and semantics are as close as possible to those of the Perl 5 language. Written by Philip Hazel - Copyright (c) 1997-2006 University of Cambridge + Copyright (c) 1997-2007 University of Cambridge ----------------------------------------------------------------------------- Redistribution and use in source and binary forms, with or without @@ -45,7 +45,10 @@ #ifndef DFTABLES -#include "pcre_internal.h" + #ifdef HAVE_CONFIG_H + #include + #endif + #include "pcre_internal.h" #endif @@ -130,7 +133,7 @@ meta-character, which in this sense is any character that terminates a run of data characters. */ - if (strchr("*+?{^.$|()[", i) != 0) x += ctype_meta; + if (strchr("\\*+?{^.$|()[", i) != 0) x += ctype_meta; *p++ = x; }