encoding: delete non-UTF-8 implementations of multibyte functions

Deleted documentation was duplicated at specific utf_ implementation
This commit is contained in:
Björn Linse
2015-06-26 12:49:47 +02:00
parent 5072ab9e5b
commit 18f56c8e90
2 changed files with 9 additions and 255 deletions

View File

@@ -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);
}
}