comparison src/lisp.h @ 46284:36c70758a8d7

(SPECPDL_INDEX): Rename from BINDING_STACK_SIZE. All callers updated.
author Juanma Barranquero <lekktu@gmail.com>
date Wed, 10 Jul 2002 08:41:28 +0000
parents 5abad41fb43b
children 76246741e5c2
comparison
equal deleted inserted replaced
46283:d57dd43efbc7 46284:36c70758a8d7
1693 extern struct specbinding *specpdl_ptr; 1693 extern struct specbinding *specpdl_ptr;
1694 extern int specpdl_size; 1694 extern int specpdl_size;
1695 1695
1696 extern EMACS_INT max_specpdl_size; 1696 extern EMACS_INT max_specpdl_size;
1697 1697
1698 #define BINDING_STACK_SIZE() (specpdl_ptr - specpdl) 1698 #define SPECPDL_INDEX() (specpdl_ptr - specpdl)
1699 1699
1700 /* Everything needed to describe an active condition case. */ 1700 /* Everything needed to describe an active condition case. */
1701 struct handler 1701 struct handler
1702 { 1702 {
1703 /* The handler clauses and variable from the condition-case form. */ 1703 /* The handler clauses and variable from the condition-case form. */