diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2002-07-10 08:45:24 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2002-07-10 08:45:24 +0000 |
commit | 331379bfa7599889e6fab3186607daaf8673cf72 (patch) | |
tree | c18efd0df0e9d2cccd4aa04b03f25b41ceaeccb9 /src/xfaces.c | |
parent | c929397dc14a09333984e0e21f5197bb62b33a68 (diff) | |
download | emacs-331379bfa7599889e6fab3186607daaf8673cf72.tar.gz |
Rename BINDING_STACK_SIZE to SPECPDL_INDEX.
Diffstat (limited to 'src/xfaces.c')
-rw-r--r-- | src/xfaces.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xfaces.c b/src/xfaces.c index fbac43205eb..2f6a4497590 100644 --- a/src/xfaces.c +++ b/src/xfaces.c @@ -6304,7 +6304,7 @@ try_alternative_families (f, family, registry, fonts) /* 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 @@ realize_basic_faces (f) 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. */ |