aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann2001-05-18 11:06:40 +0000
committerGerd Moellmann2001-05-18 11:06:40 +0000
commit7eb4b061036141a3470a473852d4e5ff12a04054 (patch)
tree73810fdcd9d2fa4626537e0b12433d2d1dee313b /src
parenta010164db4d992a27d18b06419fac743eefadf10 (diff)
downloademacs-7eb4b061036141a3470a473852d4e5ff12a04054.tar.gz
emacs-7eb4b061036141a3470a473852d4e5ff12a04054.zip
(xlfd_point_size): Don't divide pixel size from
transformation matrix by 10.
Diffstat (limited to 'src')
-rw-r--r--src/xfaces.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xfaces.c b/src/xfaces.c
index 859c46a703d..d2d88ce5021 100644
--- a/src/xfaces.c
+++ b/src/xfaces.c
@@ -2148,7 +2148,7 @@ xlfd_point_size (f, font)
2148 start = end; 2148 start = end;
2149 } 2149 }
2150 2150
2151 pixel = matrix[3] / 10.0; 2151 pixel = matrix[3];
2152 } 2152 }
2153 else 2153 else
2154 pixel = atoi (pixel_field); 2154 pixel = atoi (pixel_field);