emacs-diffs
[Top][All Lists]
Advanced

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

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


From: Stefan Monnier
Subject: [Emacs-diffs] Changes to emacs/src/indent.c
Date: Tue, 23 Nov 2004 00:33:40 -0500

Index: emacs/src/indent.c
diff -c emacs/src/indent.c:1.171 emacs/src/indent.c:1.172
*** emacs/src/indent.c:1.171    Sun Nov 21 12:56:53 2004
--- emacs/src/indent.c  Tue Nov 23 05:19:17 2004
***************
*** 220,226 ****
       Lisp_Object window;
  {
    Lisp_Object prop, position, overlay_limit, proplimit;
!   Lisp_Object buffer;
    int end, inv_p;
  
    XSETFASTINT (position, pos);
--- 220,226 ----
       Lisp_Object window;
  {
    Lisp_Object prop, position, overlay_limit, proplimit;
!   Lisp_Object buffer, tmp;
    int end, inv_p;
  
    XSETFASTINT (position, pos);
***************
*** 251,258 ****
        /* No matter what. don't go past next overlay change.  */
        if (XFASTINT (overlay_limit) < XFASTINT (proplimit))
        proplimit = overlay_limit;
!       end = XFASTINT (Fnext_single_property_change (position, Qinvisible,
!                                                   buffer, proplimit));
  #if 0
        /* Don't put the boundary in the middle of multibyte form if
           there is no actual property change.  */
--- 251,259 ----
        /* No matter what. don't go past next overlay change.  */
        if (XFASTINT (overlay_limit) < XFASTINT (proplimit))
        proplimit = overlay_limit;
!       tmp = Fnext_single_property_change (position, Qinvisible,
!                                         buffer, proplimit);
!       end = XFASTINT (tmp);
  #if 0
        /* Don't put the boundary in the middle of multibyte form if
           there is no actual property change.  */




reply via email to

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