Mercurial > emacs
changeset 11809:56ffc162094b
(Fdelete_other_windows): Fix args to vmotion.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Sat, 13 May 1995 01:43:30 +0000 |
parents | 341f7ec50c24 |
children | 986414eefde0 |
files | src/window.c |
diffstat | 1 files changed, 1 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/window.c Sat May 13 00:29:55 1995 +0000 +++ b/src/window.c Sat May 13 01:43:30 1995 +0000 @@ -1525,8 +1525,7 @@ Fset_buffer (w->buffer); /* This computation used to temporarily move point, but that can have unwanted side effects due to text properties. */ - pos = *vmotion (startpos, -top, window_internal_width (w) - 1, - XINT (w->hscroll), window); + pos = *vmotion (startpos, -top, w); Fset_marker (w->start, make_number (pos.bufpos), w->buffer); w->start_at_line_beg = ((pos.bufpos == BEGV || FETCH_CHAR (pos.bufpos - 1) == '\n') ? Qt