]> git.eshelyaron.com Git - emacs.git/commitdiff
(font_resizing_ratio): Fix last change.
authorKenichi Handa <handa@m17n.org>
Tue, 29 Oct 2002 12:14:44 +0000 (12:14 +0000)
committerKenichi Handa <handa@m17n.org>
Tue, 29 Oct 2002 12:14:44 +0000 (12:14 +0000)
src/xfaces.c

index 4747681c3bcbd4260d6d2ac3dcc27367862a34c1..340a87e67caa3e29d0ae9217f89e568e0e8f61d6 100644 (file)
@@ -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;