0
0
mirror of https://github.com/vim/vim.git synced 2025-10-02 05:04:20 -04:00

patch 9.0.0838: compiler warnings for unused variables

Problem:    Compiler warnings for unused variables.
Solution:   Addjust #ifdef and remove unused variables. (John Marriott)
This commit is contained in:
Bram Moolenaar
2022-11-06 11:27:46 +00:00
parent cd9c8d400c
commit a25f718431
4 changed files with 7 additions and 8 deletions

View File

@@ -6190,13 +6190,11 @@ gui_mch_draw_string(
// handled here.
int i;
int wlen; // string length in words
int clen; // string length in characters
int cells; // cell width of string up to composing char
int cw; // width of current cell
int c;
wlen = 0;
clen = 0;
cells = 0;
for (i = 0; i < len; )
{
@@ -6236,7 +6234,6 @@ gui_mch_draw_string(
}
cells += cw;
i += utf_ptr2len_len(text + i, len - i);
++clen;
}
#if defined(FEAT_DIRECTX)
if (IS_ENABLE_DIRECTX())