]> git.eshelyaron.com Git - emacs.git/commitdiff
(xlfd_point_size): Don't divide pixel size from
authorGerd Moellmann <gerd@gnu.org>
Fri, 18 May 2001 11:06:40 +0000 (11:06 +0000)
committerGerd Moellmann <gerd@gnu.org>
Fri, 18 May 2001 11:06:40 +0000 (11:06 +0000)
transformation matrix by 10.

src/xfaces.c

index 859c46a703dd5a402906ecfa0517f04cac1e90a5..d2d88ce5021809f2486c870c006b6ce0ac9cac48 100644 (file)
@@ -2148,7 +2148,7 @@ xlfd_point_size (f, font)
          start = end;
        }
 
-      pixel = matrix[3] / 10.0;
+      pixel = matrix[3];
     }
   else
     pixel = atoi (pixel_field);