aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/screen.c
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2015-06-26 12:49:47 +0200
committerBjörn Linse <bjorn.linse@gmail.com>2016-11-05 14:49:24 +0100
commit18f56c8e90ca0d3a78924289e6ad9c9a74af4604 (patch)
tree1c273d4f9f661f815084973cb8dac255c154bd36 /src/nvim/screen.c
parent5072ab9e5b75963d2fa831a6eb84ac04a4182659 (diff)
downloadrneovim-18f56c8e90ca0d3a78924289e6ad9c9a74af4604.tar.gz
rneovim-18f56c8e90ca0d3a78924289e6ad9c9a74af4604.tar.bz2
rneovim-18f56c8e90ca0d3a78924289e6ad9c9a74af4604.zip
encoding: delete non-UTF-8 implementations of multibyte functions
Deleted documentation was duplicated at specific utf_ implementation
Diffstat (limited to 'src/nvim/screen.c')
-rw-r--r--src/nvim/screen.c3
1 files changed, 0 insertions, 3 deletions
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);
}
}