summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2008-04-30 16:35:49 +0000
committerph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2008-04-30 16:35:49 +0000
commitb145e0250d5e34f473698f335b4f966598263f2c (patch)
treef992a5e74eb3007875e39d9c78d6360acd868d52
parent5866158e01cc19c2a8fff7fffa61de5376a938d0 (diff)
downloadpcre-b145e0250d5e34f473698f335b4f966598263f2c.tar.gz
Fix typo in ucpinternal.h.
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@346 2f5784b3-3f2a-0410-8824-cb99058d5e15
-rw-r--r--ChangeLog5
-rw-r--r--ucpinternal.h2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 728ae2a..6ffbe45 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -102,6 +102,11 @@ Version 7.7 28-Apr-08
ncurses library to be included for pcretest when ReadLine support is
requested, but also to allow for it to be overridden. This patch came from
Daniel Bergström.
+
+19. There was a typo in the file ucpinternal.h where f0_rangeflag was defined
+ as 0x00f00000 instead of 0x00800000. Luckily, this would not have caused
+ any errors with the current Unicode tables. Thanks to Peter Kankowski for
+ spotting this.
Version 7.6 28-Jan-08
diff --git a/ucpinternal.h b/ucpinternal.h
index 811a373..a96667b 100644
--- a/ucpinternal.h
+++ b/ucpinternal.h
@@ -17,7 +17,7 @@ typedef struct cnode {
#define f0_scriptmask 0xff000000 /* Mask for script field */
#define f0_scriptshift 24 /* Shift for script value */
-#define f0_rangeflag 0x00f00000 /* Flag for a range item */
+#define f0_rangeflag 0x00800000 /* Flag for a range item */
#define f0_charmask 0x001fffff /* Mask for code point value */
/* Things for the f1 field */