diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2002-07-11 14:18:02 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2002-07-11 14:18:02 +0000 |
commit | aed13378308fae471bf2c11870a456e457166c31 (patch) | |
tree | 89ee2f5aaffc88a04531e85b1c1da979f17483f2 /src/textprop.c | |
parent | e20b31732ad01d8de7605ea740525dedc3dbdb90 (diff) | |
download | emacs-aed13378308fae471bf2c11870a456e457166c31.tar.gz |
Use macro SPECPDL_INDEX.
Diffstat (limited to 'src/textprop.c')
-rw-r--r-- | src/textprop.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/textprop.c b/src/textprop.c index f6b7dab421e..3e742476a12 100644 --- a/src/textprop.c +++ b/src/textprop.c @@ -784,7 +784,7 @@ past position LIMIT; return LIMIT if nothing is found before LIMIT. */) else { Lisp_Object initial_value, value; - int count = specpdl_ptr - specpdl; + int count = SPECPDL_INDEX (); if (! NILP (object)) CHECK_BUFFER (object); @@ -849,7 +849,7 @@ back past position LIMIT; return LIMIT if nothing is found before LIMIT. */) } else { - int count = specpdl_ptr - specpdl; + int count = SPECPDL_INDEX (); if (! NILP (object)) CHECK_BUFFER (object); |