summaryrefslogtreecommitdiffstats
path: root/src/charset.c
diff options
context:
space:
mode:
author=?UTF-8?q?Dundar=20G=C3=B6c?= <gocdundar@gmail.com>2022-03-09 13:00:54 +0000
committerBram Moolenaar <Bram@vim.org>2022-03-09 13:00:54 +0000
commitf01a653ac50bb3542c24d26bb3fa5371cc3b2ed7 (patch)
tree98c1e1f86e0829897eeb041a4857a34dcbc1b1b9 /src/charset.c
parentf3507a517c38bee5498736607ead64c8ae6b5941 (diff)
patch 8.2.4531: LGTM warnings for condition and buffer sizev8.2.4531
Problem: LGTM warnings for condition always true and buffer size too small. Solution: Remove the useless condition. Make the buffer larger. (Goc Dundar, closes #9914)
Diffstat (limited to 'src/charset.c')
-rw-r--r--src/charset.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/charset.c b/src/charset.c
index 836a9f6ecf..657ab85f4d 100644
--- a/src/charset.c
+++ b/src/charset.c
@@ -558,7 +558,7 @@ transchar_nonprint(buf_T *buf, char_u *charbuf, int c)
charbuf[1] = c ^ 0x40; // DEL displayed as ^?
charbuf[2] = NUL;
}
- else if (enc_utf8 && c >= 0x80)
+ else if (enc_utf8)
{
transchar_hex(charbuf, c);
}