From: Dan Nicolaescu Date: Fri, 28 Oct 2011 14:34:06 +0000 (-0600) Subject: * src/window.c (make_window): Initialize phys_cursor_on_p. X-Git-Tag: emacs-pretest-24.0.91~36^2 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=31b39d1389640fa5677c8f86a2944a1197f4ada8;p=emacs.git * src/window.c (make_window): Initialize phys_cursor_on_p. --- diff --git a/src/ChangeLog b/src/ChangeLog index 50fc953024a..21ec98fa217 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2011-10-28 Dan Nicolaescu + + * window.c (make_window): Initialize phys_cursor_on_p. + 2011-10-28 Stefan Monnier * lisp.h (struct Lisp_Symbol): Update comments. diff --git a/src/window.c b/src/window.c index 0c35b913789..38f16c91f34 100644 --- a/src/window.c +++ b/src/window.c @@ -3320,6 +3320,7 @@ make_window (void) memset (&w->phys_cursor, 0, sizeof (w->phys_cursor)); w->phys_cursor_type = -1; w->phys_cursor_width = -1; + w->phys_cursor_on_p = 0; w->last_cursor_off_p = w->cursor_off_p = 0; w->must_be_updated_p = 0; w->pseudo_window_p = 0;