aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJuanma Barranquero2002-07-10 08:41:28 +0000
committerJuanma Barranquero2002-07-10 08:41:28 +0000
commitc929397dc14a09333984e0e21f5197bb62b33a68 (patch)
treebe409821535b2067b3580d7427c2e4457594d124 /src
parent5502266e13f237df9d478c57367820b570236684 (diff)
downloademacs-c929397dc14a09333984e0e21f5197bb62b33a68.tar.gz
emacs-c929397dc14a09333984e0e21f5197bb62b33a68.zip
(SPECPDL_INDEX): Rename from BINDING_STACK_SIZE. All callers updated.
Diffstat (limited to 'src')
-rw-r--r--src/lisp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lisp.h b/src/lisp.h
index dc38857e85e..fc7793a6808 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -1695,7 +1695,7 @@ extern int specpdl_size;
1695 1695
1696extern EMACS_INT max_specpdl_size; 1696extern 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. */
1701struct handler 1701struct handler