Hello community,

here is the log from the commit of package gettext-runtime for openSUSE:Factory 
checked in at 2013-06-29 14:25:10
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/gettext-runtime (Old)
 and      /work/SRC/openSUSE:Factory/.gettext-runtime.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "gettext-runtime"

Changes:
--------
gettext-java.changes: same change
--- /work/SRC/openSUSE:Factory/gettext-runtime/gettext-runtime-mini.changes     
2013-06-20 11:55:56.000000000 +0200
+++ 
/work/SRC/openSUSE:Factory/.gettext-runtime.new/gettext-runtime-mini.changes    
    2013-06-29 14:25:11.000000000 +0200
@@ -1,0 +2,6 @@
+Tue Jun 25 09:09:00 UTC 2013 - [email protected]
+
+- add gettext-fix-tcl-u-escape-sequences.patch in order to fix
+  the handling of Tcl \u escape sequences (bnc#826422)
+
+-------------------------------------------------------------------
gettext-runtime.changes: same change

New:
----
  gettext-fix-tcl-u-escape-sequences.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
gettext-java.spec: same change
++++++ gettext-runtime-mini.spec ++++++
--- /var/tmp/diff_new_pack.0JYHTG/_old  2013-06-29 14:25:12.000000000 +0200
+++ /var/tmp/diff_new_pack.0JYHTG/_new  2013-06-29 14:25:12.000000000 +0200
@@ -63,6 +63,7 @@
 Patch5:         gettext-initialize_vars.patch
 Patch9:         gettext-needlessly_init_vars.patch
 Patch10:        gettext-configure.patch
+Patch11:        gettext-fix-tcl-u-escape-sequences.patch
 
 %description
 This package contains the intl library as well as tools that ease the
@@ -109,6 +110,7 @@
 %patch5
 %patch9
 %patch10 -p1
+%patch11 -p1
 
 %build
 # expect a couple "You should update your `aclocal.m4' by running aclocal."

gettext-runtime.spec: same change
++++++ gettext-fix-tcl-u-escape-sequences.patch ++++++
Index: gettext-0.18.2.1/gettext-tools/src/x-tcl.c
===================================================================
--- gettext-0.18.2.1.orig/gettext-tools/src/x-tcl.c
+++ gettext-0.18.2.1/gettext-tools/src/x-tcl.c
@@ -517,7 +517,10 @@ do_getc_escaped ()
           {
             c = phase1_getc ();
             if (c == EOF || !c_isxdigit ((unsigned char) c))
-              break;
+              {
+                phase1_ungetc (c);
+                break;
+              }
 
             if (c >= '0' && c <= '9')
               n = (n << 4) + (c - '0');
@@ -526,7 +529,6 @@ do_getc_escaped ()
             else if (c >= 'a' && c <= 'f')
               n = (n << 4) + (c - 'a' + 10);
           }
-        phase1_ungetc (c);
         return (i > 0 ? n : 'u');
       }
     case '0': case '1': case '2': case '3': case '4':
-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to