aboutsummaryrefslogtreecommitdiffstats
path: root/src/insdel.c
diff options
context:
space:
mode:
authorJuanma Barranquero2011-09-09 03:06:52 +0200
committerJuanma Barranquero2011-09-09 03:06:52 +0200
commit5e617bc2b62189768814fafd1a875e89a094d3ef (patch)
treed96d22e012035d044557abf4de0b8e30b03d61b7 /src/insdel.c
parent9b1c252e294bed3aef0d2f2fc5d1fa9f72df9ee8 (diff)
downloademacs-5e617bc2b62189768814fafd1a875e89a094d3ef.tar.gz
emacs-5e617bc2b62189768814fafd1a875e89a094d3ef.zip
Whitespace changes.
Diffstat (limited to 'src/insdel.c')
-rw-r--r--src/insdel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/insdel.c b/src/insdel.c
index 0cae578925d..01e5c57b2b0 100644
--- a/src/insdel.c
+++ b/src/insdel.c
@@ -329,7 +329,7 @@ adjust_markers_for_insert (EMACS_INT from, EMACS_INT from_byte,
329 - disordered overlays in the slot `overlays_before' of current_buffer. */ 329 - disordered overlays in the slot `overlays_before' of current_buffer. */
330 if (adjusted) 330 if (adjusted)
331 { 331 {
332 fix_start_end_in_overlays(from, to); 332 fix_start_end_in_overlays (from, to);
333 fix_overlays_before (current_buffer, from, to); 333 fix_overlays_before (current_buffer, from, to);
334 } 334 }
335} 335}
@@ -1606,7 +1606,7 @@ del_range_1 (EMACS_INT from, EMACS_INT to, int prepare, int ret_string)
1606 to_byte = CHAR_TO_BYTE (to); 1606 to_byte = CHAR_TO_BYTE (to);
1607 1607
1608 deletion = del_range_2 (from, from_byte, to, to_byte, ret_string); 1608 deletion = del_range_2 (from, from_byte, to, to_byte, ret_string);
1609 GCPRO1(deletion); 1609 GCPRO1 (deletion);
1610 signal_after_change (from, to - from, 0); 1610 signal_after_change (from, to - from, 0);
1611 update_compositions (from, from, CHECK_HEAD); 1611 update_compositions (from, from, CHECK_HEAD);
1612 UNGCPRO; 1612 UNGCPRO;