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: Mon, 04 Oct 2004 10:28:50 -0400

Index: emacs/src/fringe.c
diff -c emacs/src/fringe.c:1.15 emacs/src/fringe.c:1.16
*** emacs/src/fringe.c:1.15     Wed Sep 29 14:22:25 2004
--- emacs/src/fringe.c  Mon Oct  4 14:13:18 2004
***************
*** 1343,1351 ****
         0, 2, 0,
         doc: /* Return fringe bitmaps of row containing position POS in window 
WINDOW.
  If WINDOW is nil, use selected window.  If POS is nil, use value of point
! in that window.  Return value is a cons (LEFT . RIGHT) where LEFT and RIGHT
! are the fringe bitmap numbers for the bitmaps in the left and right fringe,
! resp.  If left or right fringe is empty, the corresponding element is nil.
  Return nil if POS is not visible in WINDOW.  */)
    (pos, window)
       Lisp_Object pos, window;
--- 1343,1352 ----
         0, 2, 0,
         doc: /* Return fringe bitmaps of row containing position POS in window 
WINDOW.
  If WINDOW is nil, use selected window.  If POS is nil, use value of point
! in that window.  Return value is a list (LEFT RIGHT OV), where LEFT
! is the symbol for the bitmap in the left fringe (or nil if no bitmap),
! RIGHT is similar for the right fringe, and OV is non-nil if there is an
! overlay arrow in the left fringe.
  Return nil if POS is not visible in WINDOW.  */)
    (pos, window)
       Lisp_Object pos, window;
***************
*** 1373,1380 ****
    row = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
    row = row_containing_pos (w, textpos, row, NULL, 0);
    if (row)
!     return Fcons (get_fringe_bitmap_name (row->left_fringe_bitmap),
!                 get_fringe_bitmap_name (row->right_fringe_bitmap));
    else
      return Qnil;
  }
--- 1374,1382 ----
    row = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
    row = row_containing_pos (w, textpos, row, NULL, 0);
    if (row)
!     return list3 (get_fringe_bitmap_name (row->left_fringe_bitmap),
!                 get_fringe_bitmap_name (row->right_fringe_bitmap),
!                 (row->overlay_arrow_p ? Qt : Qnil));
    else
      return Qnil;
  }




reply via email to

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