diff options
author | Max Kellermann <max@duempel.org> | 2008-10-06 14:32:29 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-10-06 14:32:29 +0200 |
commit | 62e8aa21abca6ff635268aa8723443b973354a14 (patch) | |
tree | 344d724596fe195e05fceaa748207d7c1855e4e0 /src/screen.c | |
parent | 07df83b7b074106ae391187feffba570748e990f (diff) | |
download | mpd-62e8aa21abca6ff635268aa8723443b973354a14.tar.gz mpd-62e8aa21abca6ff635268aa8723443b973354a14.tar.xz mpd-62e8aa21abca6ff635268aa8723443b973354a14.zip |
removed my_wgetch(), switch to wgetch()
There are no special cases left for my_wgetch() to handle. We can
remove it and use the original wgetch() instead.
Diffstat (limited to '')
-rw-r--r-- | src/screen.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/screen.c b/src/screen.c index 7035ae0bb..aed9d9af9 100644 --- a/src/screen.c +++ b/src/screen.c @@ -25,7 +25,6 @@ #include "charset.h" #include "mpdclient.h" #include "utils.h" -#include "command.h" #include "options.h" #include "colors.h" #include "strfsong.h" @@ -525,7 +524,6 @@ screen_init(mpdclient_t *c) mode_fn->open(c); /* initialize wreadln */ - wrln_wgetch = my_wgetch; wrln_max_history_length = 16; } |