comparison 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
comparison
equal deleted inserted replaced
46284:36c70758a8d7 46285:3f111801efb4
6302 } 6302 }
6303 6303
6304 /* Try scalable fonts before giving up. */ 6304 /* Try scalable fonts before giving up. */
6305 if (nfonts == 0 && NILP (Vscalable_fonts_allowed)) 6305 if (nfonts == 0 && NILP (Vscalable_fonts_allowed))
6306 { 6306 {
6307 int count = BINDING_STACK_SIZE (); 6307 int count = SPECPDL_INDEX ();
6308 specbind (Qscalable_fonts_allowed, Qt); 6308 specbind (Qscalable_fonts_allowed, Qt);
6309 nfonts = try_alternative_families (f, family, registry, fonts); 6309 nfonts = try_alternative_families (f, family, registry, fonts);
6310 unbind_to (count, Qnil); 6310 unbind_to (count, Qnil);
6311 } 6311 }
6312 } 6312 }
6448 static int 6448 static int
6449 realize_basic_faces (f) 6449 realize_basic_faces (f)
6450 struct frame *f; 6450 struct frame *f;
6451 { 6451 {
6452 int success_p = 0; 6452 int success_p = 0;
6453 int count = BINDING_STACK_SIZE (); 6453 int count = SPECPDL_INDEX ();
6454 6454
6455 /* Block input here so that we won't be surprised by an X expose 6455 /* Block input here so that we won't be surprised by an X expose
6456 event, for instance, without having the faces set up. */ 6456 event, for instance, without having the faces set up. */
6457 BLOCK_INPUT; 6457 BLOCK_INPUT;
6458 specbind (Qscalable_fonts_allowed, Qt); 6458 specbind (Qscalable_fonts_allowed, Qt);