from decode_coding_object. (Bug#1809)
+2009-02-22 Andreas Schwab <schwab@linux-m68k.org>
+
+ * insdel.c (del_range_2): Don't modify gap contents when called
+ from decode_coding_object. (Bug#1809)
+
2009-02-21 Chong Yidong <cyd@stupidchicken.com>
* data.c (syms_of_data): Define Qfont_spec, Qfont_entity, and
Z -= nchars_del;
GPT = from;
GPT_BYTE = from_byte;
- if (GAP_SIZE > 0) *(GPT_ADDR) = 0; /* Put an anchor. */
+ if (GAP_SIZE > 0 && !current_buffer->text->inhibit_shrinking)
+ /* Put an anchor, unless called from decode_coding_object which
+ needs to access the previous gap contents. */
+ *(GPT_ADDR) = 0;
if (GPT_BYTE < GPT)
abort ();