Mercurial > emacs
changeset 8939:706a926df1d5
(Fset_window_buffer): Fix Lisp_Object vs. int problems.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Tue, 20 Sep 1994 04:44:01 +0000 |
parents | 16c1ca187613 |
children | 18b0314420d5 |
files | src/window.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/window.c Tue Sep 20 04:39:43 1994 +0000 +++ b/src/window.c Tue Sep 20 04:44:01 1994 +0000 @@ -1730,9 +1730,9 @@ } w->buffer = buffer; - w->window_end_pos = 0; + XFASTINT (w->window_end_pos) = 0; w->window_end_valid = Qnil; - w->hscroll = 0; + XFASTINT(w->hscroll) = 0; Fset_marker (w->pointm, make_number (BUF_PT (XBUFFER (buffer))), buffer);