comparison src/insdel.c @ 8840:7242936baf4e

(del_range_1): Call evaporate_overlays after deleting text.
author Karl Heuer <kwzh@gnu.org>
date Sat, 17 Sep 1994 01:51:58 +0000
parents ae896adcb7a3
children 405b269631c3
comparison
equal deleted inserted replaced
8839:41981db9ad8e 8840:7242936baf4e
554 if (GPT - BEG < beg_unchanged) 554 if (GPT - BEG < beg_unchanged)
555 beg_unchanged = GPT - BEG; 555 beg_unchanged = GPT - BEG;
556 if (Z - GPT < end_unchanged) 556 if (Z - GPT < end_unchanged)
557 end_unchanged = Z - GPT; 557 end_unchanged = Z - GPT;
558 558
559 evaporate_overlays (from);
559 signal_after_change (from, numdel, 0); 560 signal_after_change (from, numdel, 0);
560 } 561 }
561 562
562 /* Call this if you're about to change the region of BUFFER from START 563 /* Call this if you're about to change the region of BUFFER from START
563 to END. This checks the read-only properties of the region, calls 564 to END. This checks the read-only properties of the region, calls