aboutsummaryrefslogtreecommitdiffstats
path: root/src/insdel.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/insdel.c')
-rw-r--r--src/insdel.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/insdel.c b/src/insdel.c
index 0cae578925d..34d82fa017d 100644
--- a/src/insdel.c
+++ b/src/insdel.c
@@ -1,5 +1,5 @@
1/* Buffer insertion/deletion and gap motion for GNU Emacs. 1/* Buffer insertion/deletion and gap motion for GNU Emacs.
2 Copyright (C) 1985-1986, 1993-1995, 1997-2011 2 Copyright (C) 1985-1986, 1993-1995, 1997-2012
3 Free Software Foundation, Inc. 3 Free Software Foundation, Inc.
4 4
5This file is part of GNU Emacs. 5This file is part of GNU Emacs.
@@ -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}
@@ -1316,7 +1316,7 @@ replace_range (EMACS_INT from, EMACS_INT to, Lisp_Object new,
1316 1316
1317 UNGCPRO; 1317 UNGCPRO;
1318 1318
1319 /* Make args be valid */ 1319 /* Make args be valid. */
1320 if (from < BEGV) 1320 if (from < BEGV)
1321 from = BEGV; 1321 from = BEGV;
1322 if (to > ZV) 1322 if (to > ZV)
@@ -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;