From: Kenichi Handa Date: Tue, 29 Oct 2002 12:14:44 +0000 (+0000) Subject: (font_resizing_ratio): Fix last change. X-Git-Tag: emacs-pretest-23.0.90~8295^2~1864^2~198 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ffe91b03e8a5b3b33453af292b9c9f195400b0c7;p=emacs.git (font_resizing_ratio): Fix last change. --- 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) elt = XCAR (tail); if (STRINGP (XCAR (elt)) && FLOATP (XCDR (elt)) && fast_c_string_match_ignore_case (XCAR (elt), name) >= 0) - { - fprintf (stderr, "resized: %s\n", name); - return XFLOAT_DATA (XCDR (elt)); - } + return XFLOAT_DATA (XCDR (elt)); } } return 1.0;