[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/src/xdisp.c
From: |
Kim F . Storm |
Subject: |
[Emacs-diffs] Changes to emacs/src/xdisp.c |
Date: |
Wed, 13 Jul 2005 05:36:18 -0400 |
Index: emacs/src/xdisp.c
diff -c emacs/src/xdisp.c:1.1031 emacs/src/xdisp.c:1.1032
*** emacs/src/xdisp.c:1.1031 Mon Jul 4 16:06:38 2005
--- emacs/src/xdisp.c Wed Jul 13 09:36:12 2005
***************
*** 11294,11300 ****
window_height = window_box_height (w);
if (row->height >= window_height)
{
! if (!force_p || w->vscroll)
return 1;
}
return 0;
--- 11294,11300 ----
window_height = window_box_height (w);
if (row->height >= window_height)
{
! if (!force_p || MINI_WINDOW_P (w) || w->vscroll)
return 1;
}
return 0;
***************
*** 12729,12735 ****
}
/* Don't let the cursor end in the scroll margins. */
! if (check_margins)
{
int this_scroll_margin, cursor_height;
--- 12729,12736 ----
}
/* Don't let the cursor end in the scroll margins. */
! if (check_margins
! && !MINI_WINDOW_P (w))
{
int this_scroll_margin, cursor_height;
- [Emacs-diffs] Changes to emacs/src/xdisp.c, Richard M . Stallman, 2005/07/03
- [Emacs-diffs] Changes to emacs/src/xdisp.c, Lute Kamstra, 2005/07/04
- [Emacs-diffs] Changes to emacs/src/xdisp.c,
Kim F . Storm <=
- [Emacs-diffs] Changes to emacs/src/xdisp.c, Kim F . Storm, 2005/07/13
- [Emacs-diffs] Changes to emacs/src/xdisp.c, Kim F . Storm, 2005/07/15
- [Emacs-diffs] Changes to emacs/src/xdisp.c, Richard M . Stallman, 2005/07/15
- [Emacs-diffs] Changes to emacs/src/xdisp.c, Kim F . Storm, 2005/07/18
- [Emacs-diffs] Changes to emacs/src/xdisp.c, Juanma Barranquero, 2005/07/30