]> git.eshelyaron.com Git - emacs.git/commitdiff
(x_free_gc) [!GLYPH_DEBUG]: Fix xassert.
authorKim F. Storm <storm@cua.dk>
Thu, 3 Feb 2005 14:08:47 +0000 (14:08 +0000)
committerKim F. Storm <storm@cua.dk>
Thu, 3 Feb 2005 14:08:47 +0000 (14:08 +0000)
src/xfaces.c

index 7aa66735db6ae517480d9a0f266c6a778680de99..e1492e6b8bfbddeb717cb6897a2c8a9bc5333837 100644 (file)
@@ -738,7 +738,7 @@ x_free_gc (f, gc)
      GC gc;
 {
   BLOCK_INPUT;
-  xassert (--ngcs >= 0);
+  IF_DEBUG (xassert (--ngcs >= 0));
   XFreeGC (FRAME_X_DISPLAY (f), gc);
   UNBLOCK_INPUT;
 }
@@ -771,7 +771,7 @@ x_free_gc (f, gc)
      GC gc;
 {
   BLOCK_INPUT;
-  xassert (--ngcs >= 0);
+  IF_DEBUG (xassert (--ngcs >= 0));
   xfree (gc);
   UNBLOCK_INPUT;
 }