diff options
Diffstat (limited to 'src/fe-text/gui-readline.c')
-rw-r--r-- | src/fe-text/gui-readline.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/fe-text/gui-readline.c b/src/fe-text/gui-readline.c index f9a8b2c6..e8fc04a9 100644 --- a/src/fe-text/gui-readline.c +++ b/src/fe-text/gui-readline.c @@ -550,7 +550,9 @@ void gui_readline_init(void) cutbuffer = NULL; redir = NULL; idle_time = time(NULL); - readtag = g_input_add_full(0, G_PRIORITY_HIGH, G_INPUT_READ, (GInputFunction) readline, NULL); + readtag = g_input_add_full(g_io_channel_unix_new(0), + G_PRIORITY_HIGH, G_INPUT_READ, + (GInputFunction) readline, NULL); settings_add_str("history", "scroll_page_count", "/2"); |