changeset 103065:ab4ac86c9209

(clear_cached_metrics): Remove, unused since 2008-08-02.
author Jason Rumney <jasonr@gnu.org>
date Sat, 25 Apr 2009 06:11:46 +0000
parents 167aaf60df7e
children f6d985d47c01
files src/ChangeLog src/w32font.c
diffstat 2 files changed, 4 insertions(+), 14 deletions(-) [+]
line wrap: on
line diff
--- a/src/ChangeLog	Sat Apr 25 01:40:35 2009 +0000
+++ b/src/ChangeLog	Sat Apr 25 06:11:46 2009 +0000
@@ -1,3 +1,7 @@
+2009-04-25  Jason Rumney  <jasonr@gnu.org>
+
+	* w32font.c (clear_cached_metrics): Remove, unused since 2008-08-02.
+
 2009-04-25  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
 
 	* fringe.c (init_fringe_bitmap) [HAVE_X_WINDOWS && WORDS_BIG_ENDIAN]:
--- a/src/w32font.c	Sat Apr 25 01:40:35 2009 +0000
+++ b/src/w32font.c	Sat Apr 25 06:11:46 2009 +0000
@@ -114,7 +114,6 @@
 static int w32font_full_name P_ ((LOGFONT *, Lisp_Object, int, char *, int));
 static void compute_metrics P_ ((HDC, struct w32font_info *, unsigned int,
 				 struct w32_metric_cache *));
-static void clear_cached_metrics P_ ((struct w32font_info *));
 
 static Lisp_Object w32_registry P_ ((LONG, DWORD));
 
@@ -2390,19 +2389,6 @@
     metrics->status = W32METRIC_FAIL;
 }
 
-static void
-clear_cached_metrics (w32_font)
-     struct w32font_info *w32_font;
-{
-  int i;
-  for (i = 0; i < w32_font->n_cache_blocks; i++)
-    {
-      if (w32_font->cached_metrics[i])
-        bzero (w32_font->cached_metrics[i],
-               CACHE_BLOCKSIZE * sizeof (struct font_metrics));
-    }
-}
-
 DEFUN ("x-select-font", Fx_select_font, Sx_select_font, 0, 2, 0,
        doc: /* Read a font name using a W32 font selection dialog.
 Return fontconfig style font string corresponding to the selection.