emacs-diffs
[Top][All Lists]
Advanced

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

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


From: Kim F . Storm
Subject: [Emacs-diffs] Changes to emacs/src/fringe.c
Date: Sun, 21 Aug 2005 17:48:22 -0400

Index: emacs/src/fringe.c
diff -c emacs/src/fringe.c:1.30 emacs/src/fringe.c:1.31
*** emacs/src/fringe.c:1.30     Sun Aug 21 20:57:42 2005
--- emacs/src/fringe.c  Sun Aug 21 21:48:22 2005
***************
*** 850,856 ****
            {
              if (!done_top)
                {
!                 if (MATRIX_ROW_START_CHARPOS (row) <= BUF_BEGV (XBUFFER 
(w->buffer)))
                    row->indicate_bob_p = !NILP (boundary_top);
                  else
                    row->indicate_top_line_p = !NILP (arrow_top);
--- 850,857 ----
            {
              if (!done_top)
                {
!                 if (MATRIX_ROW_START_CHARPOS (row) <= BUF_BEGV (XBUFFER 
(w->buffer))
!                     && !MATRIX_ROW_PARTIALLY_VISIBLE_AT_TOP_P (w, row))
                    row->indicate_bob_p = !NILP (boundary_top);
                  else
                    row->indicate_top_line_p = !NILP (arrow_top);
***************
*** 859,865 ****
  
              if (!done_bot)
                {
!                 if (MATRIX_ROW_END_CHARPOS (row) >= BUF_ZV (XBUFFER 
(w->buffer)))
                    row->indicate_eob_p = !NILP (boundary_bot), done_bot = 1;
                  else if (y + row->height >= yb)
                    row->indicate_bottom_line_p = !NILP (arrow_bot), done_bot = 
1;
--- 860,867 ----
  
              if (!done_bot)
                {
!                 if (MATRIX_ROW_END_CHARPOS (row) >= BUF_ZV (XBUFFER 
(w->buffer))
!                     && !MATRIX_ROW_PARTIALLY_VISIBLE_AT_BOTTOM_P (w, row))
                    row->indicate_eob_p = !NILP (boundary_bot), done_bot = 1;
                  else if (y + row->height >= yb)
                    row->indicate_bottom_line_p = !NILP (arrow_bot), done_bot = 
1;




reply via email to

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