diff options
author | Timo Sirainen <cras@irssi.org> | 2002-02-15 13:38:24 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2002-02-15 13:38:24 +0000 |
commit | afeb6fcb7d94157808a9290226adbadd42a824ec (patch) | |
tree | 064160f9e46c5799ea4e425e373e5c924b2061c3 /src/fe-text/gui-windows.c | |
parent | 612c061605b78ce975eb7b23f76bf7abf3fff5bf (diff) | |
download | irssi-afeb6fcb7d94157808a9290226adbadd42a824ec.zip |
/SET term_type 8bit|utf8|big5 - Removed --with-big5 configure option, it's
now included the same way as utf8, though i'm not sure if it really works
but at least it should partially :) Input line is now internally using 32bit
chars but it's converted to 8bit chars for external use. Text buffer
supports only 8bit + utf8 for now.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2448 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/fe-text/gui-windows.c')
-rw-r--r-- | src/fe-text/gui-windows.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fe-text/gui-windows.c b/src/fe-text/gui-windows.c index cd834ee4..1e7316f4 100644 --- a/src/fe-text/gui-windows.c +++ b/src/fe-text/gui-windows.c @@ -44,7 +44,7 @@ static GUI_WINDOW_REC *gui_window_init(WINDOW_REC *window, gui->view = textbuffer_view_create(textbuffer_create(), window->width, window->height, settings_get_bool("scroll"), - settings_get_bool("term_utf8")); + term_type == TERM_TYPE_UTF8); textbuffer_view_set_default_indent(gui->view, settings_get_int("indent"), !settings_get_bool("indent_always"), |