[Debian-tex-commits] SVN tex-common commit + diffs: r5400 - in tex-common/trunk: debian scripts

Norbert Preining preining at alioth.debian.org
Mon Apr 23 14:03:55 UTC 2012


Author: preining
Date: 2012-04-23 14:03:53 +0000 (Mon, 23 Apr 2012)
New Revision: 5400

Modified:
   tex-common/trunk/debian/changelog
   tex-common/trunk/scripts/update-fmtlang
Log:
fix IFS bug


Modified: tex-common/trunk/debian/changelog
===================================================================
--- tex-common/trunk/debian/changelog	2012-04-23 11:47:43 UTC (rev 5399)
+++ tex-common/trunk/debian/changelog	2012-04-23 14:03:53 UTC (rev 5400)
@@ -1,3 +1,9 @@
+tex-common (3.10) unstable; urgency=low
+
+  * fix IFS error that prevents newer hyph-utf8 to get configured
+
+ -- Norbert Preining <preining at debian.org>  Mon, 23 Apr 2012 23:03:22 +0900
+
 tex-common (3.9) unstable; urgency=low
 
   * break against old version of jadetex that contains wrong and outdated

Modified: tex-common/trunk/scripts/update-fmtlang
===================================================================
--- tex-common/trunk/scripts/update-fmtlang	2012-04-23 11:47:43 UTC (rev 5399)
+++ tex-common/trunk/scripts/update-fmtlang	2012-04-23 14:03:53 UTC (rev 5400)
@@ -207,6 +207,7 @@
     if [ ! "$synonyms" = "" ] ; then
         {
             first=1
+            OLDIFS="$IFS"
             IFS=",$IFS"
             for s in $synonyms ; do
                 if [ "$HYPHENMODE" = "etex" ] ; then
@@ -222,6 +223,7 @@
                     printf "\'$s\'" >> "$tempfile"
                 fi
             done
+            IFS="$OLDIFS"
         }
     fi
     if [ "$HYPHENMODE" = "luatex" ] ; then




More information about the Debian-tex-commits mailing list