diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2015-06-23 21:10:35 +0200 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2015-09-08 10:53:44 +0200 |
commit | fa5827b144b98b4899137ab3a9a55d0f296ed435 (patch) | |
tree | a28fd395a2b080a7da189b8a2e9a5f08db3a793b /src/nvim/ui.c | |
parent | 6769438cd1392df684c7840ecb81335dc905c87d (diff) | |
download | rneovim-fa5827b144b98b4899137ab3a9a55d0f296ed435.tar.gz rneovim-fa5827b144b98b4899137ab3a9a55d0f296ed435.tar.bz2 rneovim-fa5827b144b98b4899137ab3a9a55d0f296ed435.zip |
encoding: simplify handling of encoding in TUI
Diffstat (limited to 'src/nvim/ui.c')
-rw-r--r-- | src/nvim/ui.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/nvim/ui.c b/src/nvim/ui.c index e1bbcdb193..786f6026de 100644 --- a/src/nvim/ui.c +++ b/src/nvim/ui.c @@ -113,11 +113,6 @@ void ui_set_icon(char *icon) UI_CALL(flush); } -void ui_update_encoding(void) -{ - UI_CALL(set_encoding, (char*)p_enc); -} - // May update the shape of the cursor. void ui_cursor_shape(void) { @@ -188,7 +183,6 @@ void ui_attach(UI *ui) } uis[ui_count++] = ui; - ui_update_encoding(); ui_refresh(); } |