aboutsummaryrefslogtreecommitdiffstats
path: root/src/window.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/window.c')
-rw-r--r--src/window.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/window.c b/src/window.c
index 33361b5ac1d..0f5aeb0cda9 100644
--- a/src/window.c
+++ b/src/window.c
@@ -777,7 +777,7 @@ of just the text area, use `window-inside-pixel-edges'. */)
777} 777}
778 778
779static void 779static void
780calc_absolute_offset(struct window *w, int *add_x, int *add_y) 780calc_absolute_offset (struct window *w, int *add_x, int *add_y)
781{ 781{
782 struct frame *f = XFRAME (w->frame); 782 struct frame *f = XFRAME (w->frame);
783 *add_y = f->top_pos; 783 *add_y = f->top_pos;
@@ -1684,7 +1684,7 @@ PREV-BUFFERS should be either nil or a list of <buffer, window-start,
1684window-point> triples where buffer was previously shown in WINDOW. */) 1684window-point> triples where buffer was previously shown in WINDOW. */)
1685 (Lisp_Object window, Lisp_Object prev_buffers) 1685 (Lisp_Object window, Lisp_Object prev_buffers)
1686{ 1686{
1687 return decode_any_window (window)->prev_buffers = prev_buffers; 1687 return decode_window (window)->prev_buffers = prev_buffers;
1688} 1688}
1689 1689
1690DEFUN ("window-next-buffers", Fwindow_next_buffers, Swindow_next_buffers, 1690DEFUN ("window-next-buffers", Fwindow_next_buffers, Swindow_next_buffers,
@@ -1706,7 +1706,7 @@ NEXT-BUFFERS should be either nil or a list of buffers that have been
1706recently re-shown in WINDOW. */) 1706recently re-shown in WINDOW. */)
1707 (Lisp_Object window, Lisp_Object next_buffers) 1707 (Lisp_Object window, Lisp_Object next_buffers)
1708{ 1708{
1709 return decode_any_window (window)->next_buffers = next_buffers; 1709 return decode_window (window)->next_buffers = next_buffers;
1710} 1710}
1711 1711
1712DEFUN ("window-parameters", Fwindow_parameters, Swindow_parameters, 1712DEFUN ("window-parameters", Fwindow_parameters, Swindow_parameters,