Greetings comrades,

this diff just fixes some warning about an unused variable
in tabbed.c. I didn't find any other reference to it in the
source.


Sincerely,

Christoph Lohmann
diff -r af9499282ed5 tabbed.c
--- a/tabbed.c  Sat Jun 18 14:37:43 2011 +0100
+++ b/tabbed.c  Thu Sep 08 16:50:32 2011 +0200
@@ -487,11 +487,9 @@
                XFreeStringList(missing);
        }
        if(dc.font.set) {
-               XFontSetExtents *font_extents;
                XFontStruct **xfonts;
                char **font_names;
                dc.font.ascent = dc.font.descent = 0;
-               font_extents = XExtentsOfFontSet(dc.font.set);
                n = XFontsOfFontSet(dc.font.set, &xfonts, &font_names);
                for(i = 0, dc.font.ascent = 0, dc.font.descent = 0; i < n; i++) 
{
                        dc.font.ascent = MAX(dc.font.ascent, (*xfonts)->ascent);

Reply via email to