# HG changeset patch # User Kenichi Handa # Date 1202991855 0 # Node ID 7bed61cbed0c35f5ee9e1997d9d384e690c49f81 # Parent 3ef9dcc384603e341ef782f053caa1216c6a2c86 (decode_coding_object, encode_coding_object): Preserve Vdeactivate_mark. Delete unnecessary call of Fcurrnet_buffer. diff -r 3ef9dcc38460 -r 7bed61cbed0c src/coding.c --- a/src/coding.c Thu Feb 14 12:21:58 2008 +0000 +++ b/src/coding.c Thu Feb 14 12:24:15 2008 +0000 @@ -6852,11 +6852,11 @@ EMACS_INT chars = to - from; EMACS_INT bytes = to_byte - from_byte; Lisp_Object attrs; - Lisp_Object buffer; int saved_pt = -1, saved_pt_byte; int need_marker_adjustment = 0; - - buffer = Fcurrent_buffer (); + Lisp_Object old_deactivate_mark; + + old_deactivate_mark = Vdeactivate_mark; if (NILP (dst_object)) { @@ -6938,12 +6938,13 @@ if (! NILP (CODING_ATTR_POST_READ (attrs))) { - struct gcpro gcpro1, gcpro2; + struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5; EMACS_INT prev_Z = Z, prev_Z_BYTE = Z_BYTE; Lisp_Object val; TEMP_SET_PT_BOTH (coding->dst_pos, coding->dst_pos_byte); - GCPRO2 (coding->src_object, coding->dst_object); + GCPRO5 (coding->src_object, coding->dst_object, src_object, dst_object, + old_deactivate_mark); val = safe_call1 (CODING_ATTR_POST_READ (attrs), make_number (coding->produced_char)); UNGCPRO; @@ -6961,8 +6962,7 @@ set_buffer_internal (XBUFFER (coding->dst_object)); if (dst_bytes < coding->produced) { - destination - = (unsigned char *) xrealloc (destination, coding->produced); + destination = xrealloc (destination, coding->produced); if (! destination) { record_conversion_result (coding, @@ -7019,6 +7019,7 @@ } } + Vdeactivate_mark = old_deactivate_mark; unbind_to (count, coding->dst_object); } @@ -7035,12 +7036,12 @@ EMACS_INT chars = to - from; EMACS_INT bytes = to_byte - from_byte; Lisp_Object attrs; - Lisp_Object buffer; int saved_pt = -1, saved_pt_byte; int need_marker_adjustment = 0; int kill_src_buffer = 0; - - buffer = Fcurrent_buffer (); + Lisp_Object old_deactivate_mark; + + old_deactivate_mark = Vdeactivate_mark; coding->src_object = src_object; coding->src_chars = chars; @@ -7082,11 +7083,15 @@ { Lisp_Object args[3]; - + struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5; + + GCPRO5 (coding->src_object, coding->dst_object, src_object, dst_object, + old_deactivate_mark); args[0] = CODING_ATTR_PRE_WRITE (attrs); args[1] = make_number (BEG); args[2] = make_number (Z); safe_call (3, args); + UNGCPRO; } if (XBUFFER (coding->src_object) != current_buffer) kill_src_buffer = 1; @@ -7217,6 +7222,8 @@ if (kill_src_buffer) Fkill_buffer (coding->src_object); + + Vdeactivate_mark = old_deactivate_mark; unbind_to (count, Qnil); }