mirror of
https://github.com/irssi/irssi.git
synced 2026-08-22 10:02:22 +02:00
Suggestion for code style fix.
This commit is contained in:
parent
4e8c1548e0
commit
9e53f0a230
1 changed files with 4 additions and 3 deletions
|
|
@ -112,14 +112,15 @@ char *recode_in(const SERVER_REC *server, const char *str, const char *target)
|
||||||
str_is_utf8 = 1;
|
str_is_utf8 = 1;
|
||||||
autodetect = settings_get_bool("recode_autodetect_utf8");
|
autodetect = settings_get_bool("recode_autodetect_utf8");
|
||||||
|
|
||||||
if (autodetect && str_is_utf8)
|
if (autodetect && str_is_utf8) {
|
||||||
if (term_is_utf8)
|
if (term_is_utf8)
|
||||||
return g_strdup(str);
|
return g_strdup(str);
|
||||||
else
|
else
|
||||||
from = "UTF-8";
|
from = "UTF-8";
|
||||||
else
|
} else {
|
||||||
from = find_conversion(server, target);
|
from = find_conversion(server, target);
|
||||||
|
}
|
||||||
|
|
||||||
if (from)
|
if (from)
|
||||||
recoded = g_convert_with_fallback(str, len, to, from, NULL, NULL, NULL, NULL);
|
recoded = g_convert_with_fallback(str, len, to, from, NULL, NULL, NULL, NULL);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue