emacs-diffs
[Top][All Lists]
Advanced

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

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


From: Ken Raeburn
Subject: [Emacs-diffs] Changes to emacs/src/undo.c
Date: Tue, 06 Dec 2005 02:40:14 -0500

Index: emacs/src/undo.c
diff -c emacs/src/undo.c:1.73 emacs/src/undo.c:1.74
*** emacs/src/undo.c:1.73       Sun Aug  7 12:33:18 2005
--- emacs/src/undo.c    Tue Dec  6 07:40:14 2005
***************
*** 378,388 ****
        && size_so_far > XINT (Vundo_outer_limit)
        && !NILP (Vundo_outer_limit_function))
      {
!       Lisp_Object temp = last_undo_buffer;
  
        /* Normally the function this calls is undo-outer-limit-truncate.  */
!       if (! NILP (call1 (Vundo_outer_limit_function,
!                        make_number (size_so_far))))
        {
          /* The function is responsible for making
             any desired changes in buffer-undo-list.  */
--- 378,388 ----
        && size_so_far > XINT (Vundo_outer_limit)
        && !NILP (Vundo_outer_limit_function))
      {
!       Lisp_Object temp = last_undo_buffer, tem;
  
        /* Normally the function this calls is undo-outer-limit-truncate.  */
!       tem = call1 (Vundo_outer_limit_function, make_number (size_so_far));
!       if (! NILP (tem))
        {
          /* The function is responsible for making
             any desired changes in buffer-undo-list.  */




reply via email to

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