comparison src/composite.c @ 46293:1fb8f75062c6

Use macro SPECPDL_INDEX.
author Juanma Barranquero <lekktu@gmail.com>
date Thu, 11 Jul 2002 14:18:02 +0000
parents ae7e64529fa0
children 40db0673e6f0
comparison
equal deleted inserted replaced
46292:712d0161e499 46293:1fb8f75062c6
610 if (! CHAR_TABLE_P (Vcomposition_function_table)) 610 if (! CHAR_TABLE_P (Vcomposition_function_table))
611 return; 611 return;
612 612
613 if (STRINGP (string)) 613 if (STRINGP (string))
614 { 614 {
615 count = specpdl_ptr - specpdl; 615 count = SPECPDL_INDEX ();
616 GCPRO1 (string); 616 GCPRO1 (string);
617 stop = end; 617 stop = end;
618 ptr = XSTRING (string)->data + string_char_to_byte (string, start); 618 ptr = XSTRING (string)->data + string_char_to_byte (string, start);
619 pend = ptr + STRING_BYTES (XSTRING (string)); 619 pend = ptr + STRING_BYTES (XSTRING (string));
620 } 620 }