comparison src/coding.c @ 46293:1fb8f75062c6

Use macro SPECPDL_INDEX.
author Juanma Barranquero <lekktu@gmail.com>
date Thu, 11 Jul 2002 14:18:02 +0000
parents 5d6d01bbbe87
children 40db0673e6f0
comparison
equal deleted inserted replaced
46292:712d0161e499 46293:1fb8f75062c6
5802 run_pre_post_conversion_on_str (str, coding, encodep) 5802 run_pre_post_conversion_on_str (str, coding, encodep)
5803 Lisp_Object str; 5803 Lisp_Object str;
5804 struct coding_system *coding; 5804 struct coding_system *coding;
5805 int encodep; 5805 int encodep;
5806 { 5806 {
5807 int count = specpdl_ptr - specpdl; 5807 int count = SPECPDL_INDEX ();
5808 struct gcpro gcpro1; 5808 struct gcpro gcpro1;
5809 int multibyte = STRING_MULTIBYTE (str); 5809 int multibyte = STRING_MULTIBYTE (str);
5810 Lisp_Object buffer; 5810 Lisp_Object buffer;
5811 struct buffer *buf; 5811 struct buffer *buf;
5812 5812