]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix compilation issue when --enable-checking=glyphs
authorYuuki Harano <masm+github@masm11.me>
Wed, 25 Nov 2020 11:40:10 +0000 (20:40 +0900)
committerYuuki Harano <masm+github@masm11.me>
Wed, 25 Nov 2020 11:40:10 +0000 (20:40 +0900)
* src/pgtkfns.c (Fx_create_frame): Remove code surrounded by GLYPH_DEBUG.
(x_create_tip_frame): Remove code surrounded by GLYPH_DEBUG.

src/pgtkfns.c
src/pgtkterm.c

index 494cbc72826743da8defb1c1ac3739298dc1805f..e280bb33d2c7f4730a3bf8c9ca172b014227607c 100644 (file)
@@ -1317,11 +1317,6 @@ This function is an internal primitive--use `make-frame' instead.  */ )
 
   image_cache_refcount =
     FRAME_IMAGE_CACHE (f) ? FRAME_IMAGE_CACHE (f)->refcount : 0;
-#if 0
-#ifdef GLYPH_DEBUG
-  dpyinfo_refcount = dpyinfo->reference_count;
-#endif /* GLYPH_DEBUG */
-#endif
 
   gui_default_parameter (f, parms, Qfont_backend, Qnil,
                         "fontBackend", "FontBackend", RES_TYPE_STRING);
@@ -2657,9 +2652,6 @@ x_create_tip_frame (struct pgtk_display_info *dpyinfo, Lisp_Object parms, struct
 
   image_cache_refcount =
     FRAME_IMAGE_CACHE (f) ? FRAME_IMAGE_CACHE (f)->refcount : 0;
-#ifdef GLYPH_DEBUG
-  dpyinfo_refcount = dpyinfo->reference_count;
-#endif /* GLYPH_DEBUG */
 
   gui_default_parameter (f, parms, Qfont_backend, Qnil,
                          "fontBackend", "FontBackend", RES_TYPE_STRING);
index ab61283e062b926ad6845c95a4607dfacfedc359..6f2bb2898b202991361d64e6e265844d42665bd7 100644 (file)
@@ -1004,8 +1004,6 @@ x_set_cursor_gc (struct glyph_string *s)
       PGTK_TRACE ("x_set_cursor_gc: 6. %08lx, %08lx.", xgcv.background,
                  xgcv.foreground);
 
-      IF_DEBUG (x_check_font (s->f, s->font));
-
       s->xgcv = xgcv;
     }
 }