mirror of
https://github.com/tmate-io/tmate.git
synced 2024-11-23 00:23:08 +01:00
Remove some old prototypes and unused functions.
This commit is contained in:
parent
52bbac506c
commit
5047670693
@ -44,12 +44,6 @@ const struct {
|
|||||||
{ "tiled", layout_set_tiled },
|
{ "tiled", layout_set_tiled },
|
||||||
};
|
};
|
||||||
|
|
||||||
const char *
|
|
||||||
layout_set_name(u_int layout)
|
|
||||||
{
|
|
||||||
return (layout_sets[layout].name);
|
|
||||||
}
|
|
||||||
|
|
||||||
int
|
int
|
||||||
layout_set_lookup(const char *name)
|
layout_set_lookup(const char *name)
|
||||||
{
|
{
|
||||||
|
6
tmux.h
6
tmux.h
@ -1841,7 +1841,6 @@ int server_client_open(struct client *, char **);
|
|||||||
void server_client_unref(struct client *);
|
void server_client_unref(struct client *);
|
||||||
void server_client_lost(struct client *);
|
void server_client_lost(struct client *);
|
||||||
void server_client_callback(int, short, void *);
|
void server_client_callback(int, short, void *);
|
||||||
void server_client_status_timer(void);
|
|
||||||
void server_client_loop(void);
|
void server_client_loop(void);
|
||||||
|
|
||||||
/* server-fn.c */
|
/* server-fn.c */
|
||||||
@ -1863,7 +1862,6 @@ void server_status_window(struct window *);
|
|||||||
void server_lock(void);
|
void server_lock(void);
|
||||||
void server_lock_session(struct session *);
|
void server_lock_session(struct session *);
|
||||||
void server_lock_client(struct client *);
|
void server_lock_client(struct client *);
|
||||||
int server_unlock(const char *);
|
|
||||||
void server_kill_window(struct window *);
|
void server_kill_window(struct window *);
|
||||||
int server_link_window(struct session *,
|
int server_link_window(struct session *,
|
||||||
struct winlink *, struct session *, int, int, int, char **);
|
struct winlink *, struct session *, int, int, int, char **);
|
||||||
@ -2013,7 +2011,6 @@ void screen_write_cursormove(struct screen_write_ctx *, u_int, u_int);
|
|||||||
void screen_write_reverseindex(struct screen_write_ctx *);
|
void screen_write_reverseindex(struct screen_write_ctx *);
|
||||||
void screen_write_scrollregion(struct screen_write_ctx *, u_int, u_int);
|
void screen_write_scrollregion(struct screen_write_ctx *, u_int, u_int);
|
||||||
void screen_write_linefeed(struct screen_write_ctx *, int);
|
void screen_write_linefeed(struct screen_write_ctx *, int);
|
||||||
void screen_write_linefeedscreen(struct screen_write_ctx *, int);
|
|
||||||
void screen_write_carriagereturn(struct screen_write_ctx *);
|
void screen_write_carriagereturn(struct screen_write_ctx *);
|
||||||
void screen_write_clearendofscreen(struct screen_write_ctx *);
|
void screen_write_clearendofscreen(struct screen_write_ctx *);
|
||||||
void screen_write_clearstartofscreen(struct screen_write_ctx *);
|
void screen_write_clearstartofscreen(struct screen_write_ctx *);
|
||||||
@ -2076,7 +2073,6 @@ struct window *window_create(const char *, int, char **, const char *,
|
|||||||
u_int, u_int, u_int, char **);
|
u_int, u_int, u_int, char **);
|
||||||
void window_destroy(struct window *);
|
void window_destroy(struct window *);
|
||||||
struct window_pane *window_get_active_at(struct window *, u_int, u_int);
|
struct window_pane *window_get_active_at(struct window *, u_int, u_int);
|
||||||
void window_set_active_at(struct window *, u_int, u_int);
|
|
||||||
struct window_pane *window_find_string(struct window *, const char *);
|
struct window_pane *window_find_string(struct window *, const char *);
|
||||||
int window_has_pane(struct window *, struct window_pane *);
|
int window_has_pane(struct window *, struct window_pane *);
|
||||||
int window_set_active_pane(struct window *, struct window_pane *);
|
int window_set_active_pane(struct window *, struct window_pane *);
|
||||||
@ -2157,12 +2153,10 @@ char *layout_dump(struct layout_cell *);
|
|||||||
int layout_parse(struct window *, const char *);
|
int layout_parse(struct window *, const char *);
|
||||||
|
|
||||||
/* layout-set.c */
|
/* layout-set.c */
|
||||||
const char *layout_set_name(u_int);
|
|
||||||
int layout_set_lookup(const char *);
|
int layout_set_lookup(const char *);
|
||||||
u_int layout_set_select(struct window *, u_int);
|
u_int layout_set_select(struct window *, u_int);
|
||||||
u_int layout_set_next(struct window *);
|
u_int layout_set_next(struct window *);
|
||||||
u_int layout_set_previous(struct window *);
|
u_int layout_set_previous(struct window *);
|
||||||
void layout_set_active_changed(struct window *);
|
|
||||||
|
|
||||||
/* window-clock.c */
|
/* window-clock.c */
|
||||||
extern const struct window_mode window_clock_mode;
|
extern const struct window_mode window_clock_mode;
|
||||||
|
10
window.c
10
window.c
@ -440,16 +440,6 @@ window_get_active_at(struct window *w, u_int x, u_int y)
|
|||||||
return (NULL);
|
return (NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
|
||||||
window_set_active_at(struct window *w, u_int x, u_int y)
|
|
||||||
{
|
|
||||||
struct window_pane *wp;
|
|
||||||
|
|
||||||
wp = window_get_active_at(w, x, y);
|
|
||||||
if (wp != NULL && wp != w->active)
|
|
||||||
window_set_active_pane(w, wp);
|
|
||||||
}
|
|
||||||
|
|
||||||
struct window_pane *
|
struct window_pane *
|
||||||
window_find_string(struct window *w, const char *s)
|
window_find_string(struct window *w, const char *s)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user