diff options
| author | Alan Mackenzie | 2011-10-28 14:37:05 +0000 |
|---|---|---|
| committer | Alan Mackenzie | 2011-10-28 14:37:05 +0000 |
| commit | 1aecd7ec0e23ab0fb04c4f3f4cbb7c038a85e4ab (patch) | |
| tree | 9c45fb37a455cf15c2e55cd0738d167f248b3666 /src | |
| parent | 93b5b3bdc8b734132c530acd6ffae1196c0865bc (diff) | |
| parent | 31b39d1389640fa5677c8f86a2944a1197f4ada8 (diff) | |
| download | emacs-1aecd7ec0e23ab0fb04c4f3f4cbb7c038a85e4ab.tar.gz emacs-1aecd7ec0e23ab0fb04c4f3f4cbb7c038a85e4ab.zip | |
Boring merge.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/window.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 50fc953024a..21ec98fa217 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2011-10-28 Dan Nicolaescu <dann@ics.uci.edu> | ||
| 2 | |||
| 3 | * window.c (make_window): Initialize phys_cursor_on_p. | ||
| 4 | |||
| 1 | 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca> | 5 | 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 6 | ||
| 3 | * lisp.h (struct Lisp_Symbol): Update comments. | 7 | * 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) | |||
| 3320 | memset (&w->phys_cursor, 0, sizeof (w->phys_cursor)); | 3320 | memset (&w->phys_cursor, 0, sizeof (w->phys_cursor)); |
| 3321 | w->phys_cursor_type = -1; | 3321 | w->phys_cursor_type = -1; |
| 3322 | w->phys_cursor_width = -1; | 3322 | w->phys_cursor_width = -1; |
| 3323 | w->phys_cursor_on_p = 0; | ||
| 3323 | w->last_cursor_off_p = w->cursor_off_p = 0; | 3324 | w->last_cursor_off_p = w->cursor_off_p = 0; |
| 3324 | w->must_be_updated_p = 0; | 3325 | w->must_be_updated_p = 0; |
| 3325 | w->pseudo_window_p = 0; | 3326 | w->pseudo_window_p = 0; |