1
1

tweaks: reduce two comparisons to a single one

Этот коммит содержится в:
Benno Schulenberg 2016-07-01 11:47:15 +02:00
родитель 1fd2354ad4
Коммит 86a64b1bb5

Просмотреть файл

@ -256,7 +256,7 @@ char control_mbrep(const char *c)
#ifdef ENABLE_UTF8
if (use_utf8) {
if (0 <= c[0] && c[0] <= 127)
if ((unsigned char)c[0] < 128)
return control_rep(c[0]);
else
return control_rep(c[1]);