diff options
author | Max Kellermann <max@duempel.org> | 2008-09-15 12:09:29 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-09-15 12:09:29 +0200 |
commit | 1cd28efa96dbc3d49a43d9b12c5b65d493baf949 (patch) | |
tree | 067c067ebdae3b8f7b00283413fe6a3271ab18ca /src/list_window.c | |
parent | 85fb21cc2bb75cd207d770c6ee7567ddb8e09fd4 (diff) | |
download | mpd-1cd28efa96dbc3d49a43d9b12c5b65d493baf949.tar.gz mpd-1cd28efa96dbc3d49a43d9b12c5b65d493baf949.tar.xz mpd-1cd28efa96dbc3d49a43d9b12c5b65d493baf949.zip |
remove unused static functions
Also remove some commented code and unused function parameters.
Diffstat (limited to '')
-rw-r--r-- | src/list_window.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/list_window.c b/src/list_window.c index db14ff96f..2b5fe8c60 100644 --- a/src/list_window.c +++ b/src/list_window.c @@ -107,19 +107,6 @@ list_window_previous(list_window_t *lw, int length) } void -list_window_right(list_window_t *lw, int length) -{ - lw->xoffset++; -} - -void -list_window_left(list_window_t *lw) -{ - if( lw->xoffset > 0 ) - lw->xoffset--; -} - -void list_window_first(list_window_t *lw) { lw->xoffset = 0; |