1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-09-29 13:39:10 +00:00

This does nothing.

This commit is contained in:
Brenden Matthews 2022-09-19 10:57:10 -05:00
parent 0af9a609be
commit 3083f1a383
No known key found for this signature in database
GPG Key ID: B49ABB7270D9D4FD

View File

@ -44,8 +44,6 @@ inline int scroll_character_length(char c) {
auto uc = static_cast<unsigned char>(c);
int len = 0;
if (c == -1) { return 1; }
if ((uc & 0x80) == 0) { return 1; }
while (len < 7 && (uc & (0x80 >> len)) != 0) { ++len; }