diff options
| author | Joakim Verona | 2013-08-13 10:31:40 +0200 |
|---|---|---|
| committer | Joakim Verona | 2013-08-13 10:31:40 +0200 |
| commit | 8cd462fd025ea06895b9e4508c869b61d6be28d3 (patch) | |
| tree | 6faec45674f50844187625fe96977fff6b790f08 /src/window.c | |
| parent | c84d5d936dbda2084b2c08364c8c0d5e514fc1b6 (diff) | |
| parent | a45543bc75e845c9217130c65ddd00a81c18ffd1 (diff) | |
| download | emacs-8cd462fd025ea06895b9e4508c869b61d6be28d3.tar.gz emacs-8cd462fd025ea06895b9e4508c869b61d6be28d3.zip | |
merge from trunk
Diffstat (limited to 'src/window.c')
| -rw-r--r-- | src/window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/window.c b/src/window.c index 82639b6d8ce..7b5b8e4df7a 100644 --- a/src/window.c +++ b/src/window.c | |||
| @@ -1615,7 +1615,7 @@ overriding motion of point in order to display at this exact start. */) | |||
| 1615 | if (NILP (noforce)) | 1615 | if (NILP (noforce)) |
| 1616 | w->force_start = 1; | 1616 | w->force_start = 1; |
| 1617 | w->update_mode_line = 1; | 1617 | w->update_mode_line = 1; |
| 1618 | if (!EQ (window, selected_window)) | 1618 | if (w != XWINDOW (selected_window)) |
| 1619 | /* Enforce full redisplay. FIXME: make it more selective. */ | 1619 | /* Enforce full redisplay. FIXME: make it more selective. */ |
| 1620 | windows_or_buffers_changed++; | 1620 | windows_or_buffers_changed++; |
| 1621 | 1621 | ||