[Pkg-tcltk-commits] r1482 - in tcl8.4/branches/experimental/debian: . patches

sgolovan at alioth.debian.org sgolovan at alioth.debian.org
Wed Sep 18 07:48:50 UTC 2013


Author: sgolovan
Date: 2013-09-18 07:48:49 +0000 (Wed, 18 Sep 2013)
New Revision: 1482

Added:
   tcl8.4/branches/experimental/debian/patches/regexp.diff
Modified:
   tcl8.4/branches/experimental/debian/changelog
   tcl8.4/branches/experimental/debian/patches/series
Log:
[tcl8.4-experimental]
  * Fixed [:cntrl:] regexp character class by adding missing \u0000-\u001f
    characters range to it.


Modified: tcl8.4/branches/experimental/debian/changelog
===================================================================
--- tcl8.4/branches/experimental/debian/changelog	2013-09-08 14:37:47 UTC (rev 1481)
+++ tcl8.4/branches/experimental/debian/changelog	2013-09-18 07:48:49 UTC (rev 1482)
@@ -1,8 +1,9 @@
-tcl8.4 (8.4.20-5) UNRELEASED; urgency=low
+tcl8.4 (8.4.20-5) experimental; urgency=low
 
-  * NOT RELEASED YET
+  * Fixed [:cntrl:] regexp character class by adding missing \u0000-\u001f
+    characters range to it.
 
- -- Sergei Golovan <sgolovan at debian.org>  Mon, 19 Aug 2013 22:36:49 +0400
+ -- Sergei Golovan <sgolovan at debian.org>  Wed, 18 Sep 2013 11:26:00 +0400
 
 tcl8.4 (8.4.20-4) experimental; urgency=low
 

Added: tcl8.4/branches/experimental/debian/patches/regexp.diff
===================================================================
--- tcl8.4/branches/experimental/debian/patches/regexp.diff	                        (rev 0)
+++ tcl8.4/branches/experimental/debian/patches/regexp.diff	2013-09-18 07:48:49 UTC (rev 1482)
@@ -0,0 +1,16 @@
+Author: Upstream
+Description: Patch fixes [:cntrl:] regexp character class. It adds
+ \u0000-\u001f character range to it.
+Last-Modified: Wed, 18 Sep 2013 11:19:30 +0400
+
+--- tcl8.4-8.4.20.orig/generic/regc_locale.c
++++ tcl8.4-8.4.20/generic/regc_locale.c
+@@ -259,7 +259,7 @@
+  */
+ 
+ static CONST crange controlRangeTable[] = {
+-    {0x7f, 0x9f}, {0x600, 0x604}, {0x200b, 0x200f}, {0x202a, 0x202e},
++    {0x0, 0x1f}, {0x7f, 0x9f}, {0x600, 0x604}, {0x200b, 0x200f}, {0x202a, 0x202e},
+     {0x2060, 0x2064}, {0x206a, 0x206f}, {0xe000, 0xf8ff}, {0xfff9, 0xfffb}
+ #if TCL_UTF_MAX > 4
+     ,{0x1d173, 0x1d17a}, {0xe0020, 0xe007f}, {0xf0000, 0xffffd}, {0x100000, 0x10fffd}

Modified: tcl8.4/branches/experimental/debian/patches/series
===================================================================
--- tcl8.4/branches/experimental/debian/patches/series	2013-09-08 14:37:47 UTC (rev 1481)
+++ tcl8.4/branches/experimental/debian/patches/series	2013-09-18 07:48:49 UTC (rev 1482)
@@ -3,3 +3,4 @@
 tclinc.diff
 non-linux.diff
 manpages.diff
+regexp.diff




More information about the Pkg-tcltk-commits mailing list