diff options
| author | Joakim Verona | 2012-12-26 03:51:21 +0100 |
|---|---|---|
| committer | Joakim Verona | 2012-12-26 03:51:21 +0100 |
| commit | 039071b2f39251ee0a72eb50df2917382e5b1a24 (patch) | |
| tree | 6d811bdcfa2430ec13df766bbc5bfcd567c6c026 /src/window.c | |
| parent | 6b25efe34e227fb116d1648cf01993db62378518 (diff) | |
| parent | 12384b01a92b5f2ac9af84767e04993efd6a18cc (diff) | |
| download | emacs-039071b2f39251ee0a72eb50df2917382e5b1a24.tar.gz emacs-039071b2f39251ee0a72eb50df2917382e5b1a24.zip | |
auto upstream
Diffstat (limited to 'src/window.c')
| -rw-r--r-- | src/window.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/window.c b/src/window.c index 1ca2b103b3f..8d307a314be 100644 --- a/src/window.c +++ b/src/window.c | |||
| @@ -88,6 +88,7 @@ static Lisp_Object window_list_1 (Lisp_Object, Lisp_Object, Lisp_Object); | |||
| 88 | static int window_resize_check (struct window *, int); | 88 | static int window_resize_check (struct window *, int); |
| 89 | static void window_resize_apply (struct window *, int); | 89 | static void window_resize_apply (struct window *, int); |
| 90 | static Lisp_Object select_window (Lisp_Object, Lisp_Object, int); | 90 | static Lisp_Object select_window (Lisp_Object, Lisp_Object, int); |
| 91 | static void select_window_1 (Lisp_Object, bool); | ||
| 91 | 92 | ||
| 92 | /* This is the window in which the terminal's cursor should | 93 | /* This is the window in which the terminal's cursor should |
| 93 | be left when nothing is being done with it. This must | 94 | be left when nothing is being done with it. This must |
| @@ -533,7 +534,7 @@ select_window (Lisp_Object window, Lisp_Object norecord, int inhibit_point_swap) | |||
| 533 | /* Select window with a minimum of fuss, i.e. don't record the change anywhere | 534 | /* Select window with a minimum of fuss, i.e. don't record the change anywhere |
| 534 | (not even for redisplay's benefit), and assume that the window's frame is | 535 | (not even for redisplay's benefit), and assume that the window's frame is |
| 535 | already selected. */ | 536 | already selected. */ |
| 536 | void | 537 | static void |
| 537 | select_window_1 (Lisp_Object window, bool inhibit_point_swap) | 538 | select_window_1 (Lisp_Object window, bool inhibit_point_swap) |
| 538 | { | 539 | { |
| 539 | /* Store the old selected window's buffer's point in pointm of the old | 540 | /* Store the old selected window's buffer's point in pointm of the old |