Hello community,

here is the log from the commit of package urxvt-font-size for openSUSE:Factory 
checked in at 2015-11-28 15:19:23
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/urxvt-font-size (Old)
 and      /work/SRC/openSUSE:Factory/.urxvt-font-size.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "urxvt-font-size"

Changes:
--------
--- /work/SRC/openSUSE:Factory/urxvt-font-size/urxvt-font-size.changes  
2014-11-24 11:08:14.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.urxvt-font-size.new/urxvt-font-size.changes     
2015-11-28 15:19:29.000000000 +0100
@@ -1,0 +2,9 @@
+Thu Nov 19 16:28:07 UTC 2015 - [email protected]
+
+- Version bump 1.1
+  * Ignore whitespace when splitting font definitions
+    This fixes an issue where multi-line font definitions that were indented
+    with tabs didn't get handled properly. For some reason this only seems
+    to affect definitions in Xdefaults, not Xresources.
+
+-------------------------------------------------------------------

Old:
----
  v1.0.tar.gz

New:
----
  v1.1.tar.gz

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

Other differences:
------------------
++++++ urxvt-font-size.spec ++++++
--- /var/tmp/diff_new_pack.Adv0sH/_old  2015-11-28 15:19:30.000000000 +0100
+++ /var/tmp/diff_new_pack.Adv0sH/_new  2015-11-28 15:19:30.000000000 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           urxvt-font-size
-Version:        1.0
+Version:        1.1
 Release:        0
 Summary:        Extension for rxvt-unicode that allows changing the font size 
on the fly
 License:        MIT

++++++ v1.0.tar.gz -> v1.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/urxvt-font-size-1.0/font-size 
new/urxvt-font-size-1.1/font-size
--- old/urxvt-font-size-1.0/font-size   2014-04-26 15:19:54.000000000 +0200
+++ new/urxvt-font-size-1.1/font-size   2014-12-19 04:39:39.000000000 +0100
@@ -121,7 +121,7 @@
         $term->scr_add_lines("\r\nWarning: No font configured, trying a 
default.\r\nPlease set a font with the 'URxvt.font' resource.");
         $curres = "fixed";
     }
-    my @curfonts = split(/,/, $curres);
+    my @curfonts = split(/\s*,\s*/, $curres);
 
     my $basefont = shift(@curfonts);
     my ($newbasefont, $newbasesize) = handle_font($term, $basefont, $change, 
0);
@@ -168,7 +168,7 @@
     if (!$curres) {
         return;
     }
-    my @curfonts = split(/,/, $curres);
+    my @curfonts = split(/\s*,\s*/, $curres);
     my @newfonts = ();
 
     foreach my $font (@curfonts) {


Reply via email to