summaryrefslogtreecommitdiff
path: root/pcre_study.c
diff options
context:
space:
mode:
authorph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2007-03-08 16:53:09 +0000
committerph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2007-03-08 16:53:09 +0000
commitfb65c97eca8a06b5ab09eb36dd32296fa441419f (patch)
treee663d21eede0bda3e34e9cd98312b0740f9fc72c /pcre_study.c
parentfa85f5ee481179f3453200d51f3d797e455dd529 (diff)
downloadpcre-fb65c97eca8a06b5ab09eb36dd32296fa441419f.tar.gz
Create the PrepareRelease script to process the documentation and create the
.generic files for distribution, also to remove trailing spaces. Update a lot more of the build-time documentation. Arrange for PrepareRelease and its sub-scripts to be distributed. git-svn-id: svn://vcs.exim.org/pcre/code/trunk@111 2f5784b3-3f2a-0410-8824-cb99058d5e15
Diffstat (limited to 'pcre_study.c')
-rw-r--r--pcre_study.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/pcre_study.c b/pcre_study.c
index b23a3fb..3bb871b 100644
--- a/pcre_study.c
+++ b/pcre_study.c
@@ -394,13 +394,13 @@ do
character with a value > 255. */
case OP_NCLASS:
-#ifdef SUPPORT_UTF8
+#ifdef SUPPORT_UTF8
if (utf8)
{
start_bits[24] |= 0xf0; /* Bits for 0xc4 - 0xc8 */
memset(start_bits+25, 0xff, 7); /* Bits for 0xc9 - 0xff */
}
-#endif
+#endif
/* Fall through */
case OP_CLASS:
@@ -431,7 +431,7 @@ do
/* In non-UTF-8 mode, the two bit maps are completely compatible. */
else
-#endif
+#endif
{
for (c = 0; c < 32; c++) start_bits[c] |= tcode[c];
}