aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenichi Handa2002-10-29 12:14:44 +0000
committerKenichi Handa2002-10-29 12:14:44 +0000
commitffe91b03e8a5b3b33453af292b9c9f195400b0c7 (patch)
tree6378fd56d9eaea765d701d8f1895898fc56198f3 /src
parent66318d27764591bca95c9cf083e7f8e0bbffed0c (diff)
downloademacs-ffe91b03e8a5b3b33453af292b9c9f195400b0c7.tar.gz
emacs-ffe91b03e8a5b3b33453af292b9c9f195400b0c7.zip
(font_resizing_ratio): Fix last change.
Diffstat (limited to 'src')
-rw-r--r--src/xfaces.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/xfaces.c b/src/xfaces.c
index 4747681c3bc..340a87e67ca 100644
--- a/src/xfaces.c
+++ b/src/xfaces.c
@@ -2304,10 +2304,7 @@ font_resizing_ratio (char *name)
2304 elt = XCAR (tail); 2304 elt = XCAR (tail);
2305 if (STRINGP (XCAR (elt)) && FLOATP (XCDR (elt)) 2305 if (STRINGP (XCAR (elt)) && FLOATP (XCDR (elt))
2306 && fast_c_string_match_ignore_case (XCAR (elt), name) >= 0) 2306 && fast_c_string_match_ignore_case (XCAR (elt), name) >= 0)
2307 { 2307 return XFLOAT_DATA (XCDR (elt));
2308 fprintf (stderr, "resized: %s\n", name);
2309 return XFLOAT_DATA (XCDR (elt));
2310 }
2311 } 2308 }
2312 } 2309 }
2313 return 1.0; 2310 return 1.0;