summaryrefslogtreecommitdiff
path: root/src/perl/ui/UI.xs
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2001-12-03 23:18:31 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2001-12-03 23:18:31 +0000
commit6041c93b56ce1dc868bf20a2857613d85e3522e6 (patch)
treeff1dc635ed11cbb9111f3ad0c7e75d44fceb8e65 /src/perl/ui/UI.xs
parent5f7774db81f457bd9a63419af110cbb362bb2ad0 (diff)
downloadirssi-6041c93b56ce1dc868bf20a2857613d85e3522e6.zip
Irssi::UI::Window's data_level and hilight_color contained wrong hash
length arguments. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2189 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/perl/ui/UI.xs')
-rw-r--r--src/perl/ui/UI.xs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/perl/ui/UI.xs b/src/perl/ui/UI.xs
index c3b69900..2b55e8cb 100644
--- a/src/perl/ui/UI.xs
+++ b/src/perl/ui/UI.xs
@@ -37,8 +37,8 @@ static void perl_window_fill_hash(HV *hv, WINDOW_REC *window)
hv_store(hv, "sticky_refnum", 13, newSViv(window->sticky_refnum), 0);
- hv_store(hv, "data_level", 8, newSViv(window->data_level), 0);
- hv_store(hv, "hilight_color", 10, new_pv(window->hilight_color), 0);
+ hv_store(hv, "data_level", 10, newSViv(window->data_level), 0);
+ hv_store(hv, "hilight_color", 13, new_pv(window->hilight_color), 0);
hv_store(hv, "last_timestamp", 14, newSViv(window->last_timestamp), 0);
hv_store(hv, "last_line", 9, newSViv(window->last_line), 0);