From dfa5e464d459f84200a73d178f1ecefe75bbe511 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=3D=3FUTF-8=3Fq=3FDundar=3D20G=3DC3=3DB6c=3F=3D?= Date: Sat, 2 Oct 2021 11:26:51 +0100 Subject: patch 8.2.3460: some type casts are not needed Problem: Some type casts are not needed. Solution: Remove unnecessary type casts. (closes #8934) --- src/getchar.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/getchar.c') diff --git a/src/getchar.c b/src/getchar.c index 52c77210a2..2d31c03e8b 100644 --- a/src/getchar.c +++ b/src/getchar.c @@ -1853,7 +1853,7 @@ vgetc(void) // or a K_SPECIAL - KS_EXTRA - KE_CSI, which is CSI // too. c = vgetorpeek(TRUE); - if (vgetorpeek(TRUE) == (int)KE_CSI && c == KS_EXTRA) + if (vgetorpeek(TRUE) == KE_CSI && c == KS_EXTRA) buf[i] = CSI; } } @@ -2521,7 +2521,7 @@ handle_mapping( if (*s == RM_SCRIPT && (mp->m_keys[0] != K_SPECIAL || mp->m_keys[1] != KS_EXTRA - || mp->m_keys[2] != (int)KE_SNR)) + || mp->m_keys[2] != KE_SNR)) continue; // If one of the typed keys cannot be remapped, skip the @@ -3139,7 +3139,7 @@ vgetorpeek(int advance) if (!VIM_ISWHITE(ptr[col])) curwin->w_wcol = vcol; vcol += lbr_chartabsize(ptr, ptr + col, - (colnr_T)vcol); + vcol); if (has_mbyte) col += (*mb_ptr2len)(ptr + col); else -- cgit v1.2.3