diff options
author | Emanuele Giaquinta <exg@irssi.org> | 2007-02-06 23:06:14 +0000 |
---|---|---|
committer | exg <exg@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2007-02-06 23:06:14 +0000 |
commit | 9d72e78ccd98ca60662c252fc9f89d0349eaf3a8 (patch) | |
tree | 392f40b20fbcc9fadda3d1931676a8ba12851291 | |
parent | 67e5a315b0264e00521583cf2e775cbc8eb9bfc8 (diff) | |
download | irssi-9d72e78ccd98ca60662c252fc9f89d0349eaf3a8.zip |
Revert perl utf8 stuff for now.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4412 dbcabf3a-b0e7-0310-adc4-f8d773084564
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | src/perl/common/Settings.xs | 3 | ||||
-rw-r--r-- | src/perl/textui/TextBuffer.xs | 3 |
3 files changed, 0 insertions, 8 deletions
@@ -9,8 +9,6 @@ v0.8.11 200x-xx-xx The Irssi team <staff@irssi.org> + Don't wait for all /NAMES replies before syncing if we can't combine queries anyways (Patch by jilles) + Renamed irc.efnet.net to irc.efnet.org - + Add support for utf8 to Irssi::settings_get_str and - Irssi::TextUI::Line::get_text + /SCROLLBACK CLEAR accepts the same arguments as /CLEAR + Check if binary exists and can be executed before /UPGRADE + Change default value of override_coredump_limit to OFF diff --git a/src/perl/common/Settings.xs b/src/perl/common/Settings.xs index a9bdd11d..dc5507cf 100644 --- a/src/perl/common/Settings.xs +++ b/src/perl/common/Settings.xs @@ -1,6 +1,5 @@ #include "module.h" #include "misc.h" -#include "recode.h" static GHashTable *perl_settings; @@ -77,8 +76,6 @@ PREINIT: CODE: str = settings_get_str(key); RETVAL = new_pv(str); - if (is_utf8()) - SvUTF8_on(RETVAL); OUTPUT: RETVAL diff --git a/src/perl/textui/TextBuffer.xs b/src/perl/textui/TextBuffer.xs index 91a77a80..31e7c491 100644 --- a/src/perl/textui/TextBuffer.xs +++ b/src/perl/textui/TextBuffer.xs @@ -1,5 +1,4 @@ #include "module.h" -#include "recode.h" MODULE = Irssi::TextUI::TextBuffer PACKAGE = Irssi PROTOTYPES: ENABLE @@ -81,8 +80,6 @@ PPCODE: str = g_string_new(NULL); textbuffer_line2text(line, coloring, str); result = new_pv(str->str); - if (is_utf8()) - SvUTF8_on(result); XPUSHs(sv_2mortal(result)); g_string_free(str, TRUE); |