Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
12384b01
Commit
12384b01
authored
Dec 25, 2012
by
Paul Eggert
Browse files
* window.c (select_window_1): Now static.
parent
7073eb61
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
2 deletions
+6
-2
src/ChangeLog
src/ChangeLog
+4
-0
src/window.c
src/window.c
+2
-1
src/window.h
src/window.h
+0
-1
No files found.
src/ChangeLog
View file @
12384b01
2012-12-26 Paul Eggert <eggert@cs.ucla.edu>
* window.c (select_window_1): Now static, since it's used only here.
2012-12-25 Eli Zaretskii <eliz@gnu.org>
* window.c (window_body_cols): Subtract display margins from the
...
...
src/window.c
View file @
12384b01
...
...
@@ -87,6 +87,7 @@ static Lisp_Object window_list_1 (Lisp_Object, Lisp_Object, Lisp_Object);
static int window_resize_check (struct window *, int);
static void window_resize_apply (struct window *, int);
static Lisp_Object select_window (Lisp_Object, Lisp_Object, int);
static void select_window_1 (Lisp_Object, bool);
/* This is the window in which the terminal's cursor should
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)
/* Select window with a minimum of fuss, i.e. don't record the change anywhere
(not even for redisplay's benefit), and assume that the window's frame is
already selected. */
void
static
void
select_window_1 (Lisp_Object window, bool inhibit_point_swap)
{
/* Store the old selected window's buffer's point in pointm of the old
...
...
src/window.h
View file @
12384b01
...
...
@@ -978,7 +978,6 @@ struct glyph *get_phys_cursor_glyph (struct window *w);
extern
Lisp_Object
Qwindowp
,
Qwindow_live_p
;
extern
Lisp_Object
Vwindow_list
;
extern
void
select_window_1
(
Lisp_Object
window
,
bool
inhibit_point_swap
);
extern
struct
window
*
decode_live_window
(
Lisp_Object
);
extern
struct
window
*
decode_any_window
(
Lisp_Object
);
extern
bool
compare_window_configurations
(
Lisp_Object
,
Lisp_Object
,
bool
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment