diff options
author | nicm <nicm> | 2015-08-29 23:55:55 +0000 |
---|---|---|
committer | nicm <nicm> | 2015-08-29 23:55:55 +0000 |
commit | 5047670693e3bc861eb4ae95708c96041b12a759 (patch) | |
tree | 5d952e0b1e3963d0ff154ed4fc3ff327559ea75d /window.c | |
parent | 52bbac506c54cd378fb4493d218027dc36a7fce5 (diff) | |
download | rtmux-5047670693e3bc861eb4ae95708c96041b12a759.tar.gz rtmux-5047670693e3bc861eb4ae95708c96041b12a759.tar.bz2 rtmux-5047670693e3bc861eb4ae95708c96041b12a759.zip |
Remove some old prototypes and unused functions.
Diffstat (limited to 'window.c')
-rw-r--r-- | window.c | 10 |
1 files changed, 0 insertions, 10 deletions
@@ -440,16 +440,6 @@ window_get_active_at(struct window *w, u_int x, u_int y) 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 * window_find_string(struct window *w, const char *s) { |