diff src/xfaces.c @ 46285:3f111801efb4

Rename BINDING_STACK_SIZE to SPECPDL_INDEX.
author Juanma Barranquero <lekktu@gmail.com>
date Wed, 10 Jul 2002 08:45:24 +0000
parents 39cdf9669519
children 1fb8f75062c6
line wrap: on
line diff
--- a/src/xfaces.c	Wed Jul 10 08:41:28 2002 +0000
+++ b/src/xfaces.c	Wed Jul 10 08:45:24 2002 +0000
@@ -6304,7 +6304,7 @@
       /* Try scalable fonts before giving up.  */
       if (nfonts == 0 && NILP (Vscalable_fonts_allowed))
 	{
-	  int count = BINDING_STACK_SIZE ();
+	  int count = SPECPDL_INDEX ();
 	  specbind (Qscalable_fonts_allowed, Qt);
 	  nfonts = try_alternative_families (f, family, registry, fonts);
 	  unbind_to (count, Qnil);
@@ -6450,7 +6450,7 @@
      struct frame *f;
 {
   int success_p = 0;
-  int count = BINDING_STACK_SIZE ();
+  int count = SPECPDL_INDEX ();
 
   /* Block input here so that we won't be surprised by an X expose
      event, for instance, without having the faces set up.  */