From 18f56c8e90ca0d3a78924289e6ad9c9a74af4604 Mon Sep 17 00:00:00 2001 From: Björn Linse Date: Fri, 26 Jun 2015 12:49:47 +0200 Subject: encoding: delete non-UTF-8 implementations of multibyte functions Deleted documentation was duplicated at specific utf_ implementation --- src/nvim/screen.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'src/nvim/screen.c') diff --git a/src/nvim/screen.c b/src/nvim/screen.c index 7fd08b6d7b..cee3c62f43 100644 --- a/src/nvim/screen.c +++ b/src/nvim/screen.c @@ -5459,9 +5459,6 @@ void screen_puts_len(char_u *text, int textlen, int row, int col, int attr) /* If we detected the next character needs to be redrawn, but the text * doesn't extend up to there, update the character here. */ if (force_redraw_next && col < screen_Columns) { - if (l_enc_dbcs != 0 && dbcs_off2cells(off, max_off) > 1) - screen_char_2(off, row, col); - else screen_char(off, row, col); } } -- cgit