mirror of
https://github.com/irssi/irssi.git
synced 2025-02-02 15:08:01 -05:00
Cosmetic.
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@4957 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
48d0135d3e
commit
cba6199958
@ -519,9 +519,10 @@ char *gui_entry_get_cutbuffer(GUI_ENTRY_REC *entry)
|
||||
buf = g_malloc(entry->cutbuffer_len*6 + 1);
|
||||
if (entry->utf8)
|
||||
utf16_to_utf8(entry->cutbuffer, buf);
|
||||
else if (term_type == TERM_TYPE_BIG5) {
|
||||
else {
|
||||
if (term_type == TERM_TYPE_BIG5)
|
||||
unichars_to_big5(entry->cutbuffer, buf);
|
||||
} else {
|
||||
else
|
||||
for (i = 0; i <= entry->cutbuffer_len; i++)
|
||||
buf[i] = entry->cutbuffer[i];
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user