aboutsummaryrefslogtreecommitdiffstats
path: root/src/window.c
diff options
context:
space:
mode:
authorPaul Eggert2012-12-25 18:45:43 -0800
committerPaul Eggert2012-12-25 18:45:43 -0800
commit12384b01a92b5f2ac9af84767e04993efd6a18cc (patch)
treefa560dde1b53dc81452249077c0d8cc5b55e1297 /src/window.c
parent7073eb6178878346440d37452f286b613997432a (diff)
downloademacs-12384b01a92b5f2ac9af84767e04993efd6a18cc.tar.gz
emacs-12384b01a92b5f2ac9af84767e04993efd6a18cc.zip
* window.c (select_window_1): Now static.
Diffstat (limited to 'src/window.c')
-rw-r--r--src/window.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/window.c b/src/window.c
index 3fca5b7351e..34a8f8be1e1 100644
--- a/src/window.c
+++ b/src/window.c
@@ -87,6 +87,7 @@ static Lisp_Object window_list_1 (Lisp_Object, Lisp_Object, Lisp_Object);
87static int window_resize_check (struct window *, int); 87static int window_resize_check (struct window *, int);
88static void window_resize_apply (struct window *, int); 88static void window_resize_apply (struct window *, int);
89static Lisp_Object select_window (Lisp_Object, Lisp_Object, int); 89static Lisp_Object select_window (Lisp_Object, Lisp_Object, int);
90static void select_window_1 (Lisp_Object, bool);
90 91
91/* This is the window in which the terminal's cursor should 92/* This is the window in which the terminal's cursor should
92 be left when nothing is being done with it. This must 93 be left when nothing is being done with it. This must
@@ -532,7 +533,7 @@ select_window (Lisp_Object window, Lisp_Object norecord, int inhibit_point_swap)
532/* Select window with a minimum of fuss, i.e. don't record the change anywhere 533/* Select window with a minimum of fuss, i.e. don't record the change anywhere
533 (not even for redisplay's benefit), and assume that the window's frame is 534 (not even for redisplay's benefit), and assume that the window's frame is
534 already selected. */ 535 already selected. */
535void 536static void
536select_window_1 (Lisp_Object window, bool inhibit_point_swap) 537select_window_1 (Lisp_Object window, bool inhibit_point_swap)
537{ 538{
538 /* Store the old selected window's buffer's point in pointm of the old 539 /* Store the old selected window's buffer's point in pointm of the old