]> git.eshelyaron.com Git - emacs.git/commitdiff
(realize_x_face): Don't use uninitialized local
authorGerd Moellmann <gerd@gnu.org>
Wed, 22 Dec 1999 16:01:16 +0000 (16:01 +0000)
committerGerd Moellmann <gerd@gnu.org>
Wed, 22 Dec 1999 16:01:16 +0000 (16:01 +0000)
variable in xassert.

src/ChangeLog
src/xfaces.c

index 193684fab3681f90ee410d72a226e68ee304d9d7..eab724355088f71dadbe477c7a8ba86e8f7d3ca3 100644 (file)
@@ -1,6 +1,6 @@
 1999-12-22  Gerd Moellmann  <gerd@gnu.org>
 
-       * xfaces.c (clear_font_table): Don't use uninitialized local
+       * xfaces.c (realize_x_face): Don't use uninitialized local
        variable in xassert.
 
 1999-12-22  Kenichi Handa  <handa@etl.go.jp>
index cdb1612f048a4ffa8631e2f3a3d9b1b27d694a17..dfe8f2e4293e6e5a81231451d8ee9c981599c98f 100644 (file)
@@ -778,7 +778,7 @@ clear_font_table (f)
   Lisp_Object rest, frame;
   int i;
 
-  xassert (FRAME_X_P (c->f));
+  xassert (FRAME_X_P (f));
 
   used = (char *) alloca (dpyinfo->n_fonts * sizeof *used);
   bzero (used, dpyinfo->n_fonts * sizeof *used);
@@ -5839,7 +5839,7 @@ realize_x_face (c, attrs, charset)
   Lisp_Object unibyte_registry;
   struct gcpro gcpro1;
 
-  xassert (FRAME_X_P (f));
+  xassert (FRAME_X_P (c->f));
 
   /* If realizing a face for use in unibyte text, get the X registry
      and encoding to use from Vface_default_registry.  */