]> git.eshelyaron.com Git - emacs.git/commitdiff
(Frecenter): Fix args to vmotion (overlooked in May 13 change).
authorKarl Heuer <kwzh@gnu.org>
Tue, 16 May 1995 02:56:20 +0000 (02:56 +0000)
committerKarl Heuer <kwzh@gnu.org>
Tue, 16 May 1995 02:56:20 +0000 (02:56 +0000)
src/window.c

index 5ed0711d20a8a9adcde5f5df60e85a3e3465f2ac..1ef9404f7f169aa6d59030c52c132a2f77b4b8cd 100644 (file)
@@ -2780,7 +2780,6 @@ redraws with point in the center of the current window.")
   register struct window *w = XWINDOW (selected_window);
   register int ht = window_internal_height (w);
   struct position pos;
-  Lisp_Object window;
 
   if (NILP (n))
     {
@@ -2802,9 +2801,7 @@ redraws with point in the center of the current window.")
   if (XINT (n) < 0)
     XSETINT (n, XINT (n) + ht);
 
-  XSETWINDOW (window, w);
-  pos = *vmotion (point, - XINT (n), window_internal_width (w) - 1,
-                 XINT (w->hscroll), window);
+  pos = *vmotion (point, - XINT (n), w);
 
   Fset_marker (w->start, make_number (pos.bufpos), w->buffer);
   w->start_at_line_beg = ((pos.bufpos == BEGV