diff options
Diffstat (limited to 'src/window.c')
| -rw-r--r-- | src/window.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/window.c b/src/window.c index e3850387a64..0473ed4e3eb 100644 --- a/src/window.c +++ b/src/window.c | |||
| @@ -1682,7 +1682,7 @@ PREV-BUFFERS should be either nil or a list of <buffer, window-start, | |||
| 1682 | window-point> triples where buffer was previously shown in WINDOW. */) | 1682 | window-point> triples where buffer was previously shown in WINDOW. */) |
| 1683 | (Lisp_Object window, Lisp_Object prev_buffers) | 1683 | (Lisp_Object window, Lisp_Object prev_buffers) |
| 1684 | { | 1684 | { |
| 1685 | return decode_any_window (window)->prev_buffers = prev_buffers; | 1685 | return decode_window (window)->prev_buffers = prev_buffers; |
| 1686 | } | 1686 | } |
| 1687 | 1687 | ||
| 1688 | DEFUN ("window-next-buffers", Fwindow_next_buffers, Swindow_next_buffers, | 1688 | DEFUN ("window-next-buffers", Fwindow_next_buffers, Swindow_next_buffers, |
| @@ -1704,7 +1704,7 @@ NEXT-BUFFERS should be either nil or a list of buffers that have been | |||
| 1704 | recently re-shown in WINDOW. */) | 1704 | recently re-shown in WINDOW. */) |
| 1705 | (Lisp_Object window, Lisp_Object next_buffers) | 1705 | (Lisp_Object window, Lisp_Object next_buffers) |
| 1706 | { | 1706 | { |
| 1707 | return decode_any_window (window)->next_buffers = next_buffers; | 1707 | return decode_window (window)->next_buffers = next_buffers; |
| 1708 | } | 1708 | } |
| 1709 | 1709 | ||
| 1710 | DEFUN ("window-parameters", Fwindow_parameters, Swindow_parameters, | 1710 | DEFUN ("window-parameters", Fwindow_parameters, Swindow_parameters, |