diff options
author | Andreas Schwab <schwab@suse.de> | 1998-04-29 09:44:06 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 1998-04-29 09:44:06 +0000 |
commit | d0661785305d29d3212c71bce5bdf5e1c10418e4 (patch) | |
tree | a1f2d247a95c7a3e8da05c0fb5985dd523bbf9fb /src/window.c | |
parent | edd981cba67ab1e98e45ce51fd34186793b68441 (diff) | |
download | emacs-d0661785305d29d3212c71bce5bdf5e1c10418e4.tar.gz |
(make_window): Initialize last_point field.
Diffstat (limited to 'src/window.c')
-rw-r--r-- | src/window.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/window.c b/src/window.c index e4ba54a4c68..17861d652af 100644 --- a/src/window.c +++ b/src/window.c @@ -164,6 +164,7 @@ make_window () XSETFASTINT (p->height, 0); XSETFASTINT (p->width, 0); XSETFASTINT (p->hscroll, 0); + XSETFASTINT (p->last_point, 0); XSETFASTINT (p->last_point_x, 0); XSETFASTINT (p->last_point_y, 0); p->start = Fmake_marker (); |