aboutsummaryrefslogtreecommitdiffstats
path: root/src/xselect.c
diff options
context:
space:
mode:
authorJuanma Barranquero2002-07-11 14:18:02 +0000
committerJuanma Barranquero2002-07-11 14:18:02 +0000
commitaed13378308fae471bf2c11870a456e457166c31 (patch)
tree89ee2f5aaffc88a04531e85b1c1da979f17483f2 /src/xselect.c
parente20b31732ad01d8de7605ea740525dedc3dbdb90 (diff)
downloademacs-aed13378308fae471bf2c11870a456e457166c31.tar.gz
emacs-aed13378308fae471bf2c11870a456e457166c31.zip
Use macro SPECPDL_INDEX.
Diffstat (limited to 'src/xselect.c')
-rw-r--r--src/xselect.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xselect.c b/src/xselect.c
index 2da3eddfc91..1d5fe0b8ea2 100644
--- a/src/xselect.c
+++ b/src/xselect.c
@@ -414,7 +414,7 @@ x_get_local_selection (selection_symbol, target_type)
414 /* Don't allow a quit within the converter. 414 /* Don't allow a quit within the converter.
415 When the user types C-g, he would be surprised 415 When the user types C-g, he would be surprised
416 if by luck it came during a converter. */ 416 if by luck it came during a converter. */
417 count = specpdl_ptr - specpdl; 417 count = SPECPDL_INDEX ();
418 specbind (Qinhibit_quit, Qt); 418 specbind (Qinhibit_quit, Qt);
419 419
420 CHECK_SYMBOL (target_type); 420 CHECK_SYMBOL (target_type);
@@ -1074,7 +1074,7 @@ wait_for_property_change (location)
1074 struct prop_location *location; 1074 struct prop_location *location;
1075{ 1075{
1076 int secs, usecs; 1076 int secs, usecs;
1077 int count = specpdl_ptr - specpdl; 1077 int count = SPECPDL_INDEX ();
1078 Lisp_Object tem; 1078 Lisp_Object tem;
1079 1079
1080 tem = Fcons (Qnil, Qnil); 1080 tem = Fcons (Qnil, Qnil);