diff options
| author | Juanma Barranquero | 2002-07-11 14:18:02 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2002-07-11 14:18:02 +0000 |
| commit | aed13378308fae471bf2c11870a456e457166c31 (patch) | |
| tree | 89ee2f5aaffc88a04531e85b1c1da979f17483f2 /src/textprop.c | |
| parent | e20b31732ad01d8de7605ea740525dedc3dbdb90 (diff) | |
| download | emacs-aed13378308fae471bf2c11870a456e457166c31.tar.gz emacs-aed13378308fae471bf2c11870a456e457166c31.zip | |
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. */) | |||
| 784 | else | 784 | else |
| 785 | { | 785 | { |
| 786 | Lisp_Object initial_value, value; | 786 | Lisp_Object initial_value, value; |
| 787 | int count = specpdl_ptr - specpdl; | 787 | int count = SPECPDL_INDEX (); |
| 788 | 788 | ||
| 789 | if (! NILP (object)) | 789 | if (! NILP (object)) |
| 790 | CHECK_BUFFER (object); | 790 | CHECK_BUFFER (object); |
| @@ -849,7 +849,7 @@ back past position LIMIT; return LIMIT if nothing is found before LIMIT. */) | |||
| 849 | } | 849 | } |
| 850 | else | 850 | else |
| 851 | { | 851 | { |
| 852 | int count = specpdl_ptr - specpdl; | 852 | int count = SPECPDL_INDEX (); |
| 853 | 853 | ||
| 854 | if (! NILP (object)) | 854 | if (! NILP (object)) |
| 855 | CHECK_BUFFER (object); | 855 | CHECK_BUFFER (object); |