emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/src/insdel.c


From: Stefan Monnier
Subject: [Emacs-diffs] Changes to emacs/src/insdel.c
Date: Wed, 09 Jul 2003 10:50:01 -0400

Index: emacs/src/insdel.c
diff -c emacs/src/insdel.c:1.174 emacs/src/insdel.c:1.175
*** emacs/src/insdel.c:1.174    Thu Jun 26 19:17:29 2003
--- emacs/src/insdel.c  Wed Jul  9 10:50:01 2003
***************
*** 2060,2067 ****
        UNGCPRO;
      }
  
!   if (!NILP (current_buffer->overlays_before)
!       || !NILP (current_buffer->overlays_after))
      {
        PRESERVE_VALUE;
        report_overlay_modification (FETCH_START, FETCH_END, 0,
--- 2060,2066 ----
        UNGCPRO;
      }
  
!   if (current_buffer->overlays_before || current_buffer->overlays_after)
      {
        PRESERVE_VALUE;
        report_overlay_modification (FETCH_START, FETCH_END, 0,
***************
*** 2095,2102 ****
       just record the args that we were going to use.  */
    if (! NILP (Vcombine_after_change_calls)
        && NILP (Vbefore_change_functions)
!       && NILP (current_buffer->overlays_before)
!       && NILP (current_buffer->overlays_after))
      {
        Lisp_Object elt;
  
--- 2094,2101 ----
       just record the args that we were going to use.  */
    if (! NILP (Vcombine_after_change_calls)
        && NILP (Vbefore_change_functions)
!       && !current_buffer->overlays_before
!       && !current_buffer->overlays_after)
      {
        Lisp_Object elt;
  
***************
*** 2161,2168 ****
        UNGCPRO;
      }
  
!   if (!NILP (current_buffer->overlays_before)
!       || !NILP (current_buffer->overlays_after))
      report_overlay_modification (make_number (charpos),
                                 make_number (charpos + lenins),
                                 1,
--- 2160,2166 ----
        UNGCPRO;
      }
  
!   if (current_buffer->overlays_before || current_buffer->overlays_after)
      report_overlay_modification (make_number (charpos),
                                 make_number (charpos + lenins),
                                 1,




reply via email to

[Prev in Thread] Current Thread [Next in Thread]