diff options
author | Timo Sirainen <cras@irssi.org> | 2001-03-17 01:52:43 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2001-03-17 01:52:43 +0000 |
commit | c3da7fa8abe93ee39b8913959d6d66bf6b296ed8 (patch) | |
tree | f42a855808baa39844a1bff64fab42c9a9e3d1eb /src/perl/perl-fe.c | |
parent | aa4a4d40727db29f43622cdfa7cc9eadbb5f839e (diff) | |
download | irssi-c3da7fa8abe93ee39b8913959d6d66bf6b296ed8.zip |
Hilighting updates. /HILIGHT -color, /SET hilight_color and /SET
hilight_act_color now use %codes for specifying color.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1402 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/perl/perl-fe.c')
-rw-r--r-- | src/perl/perl-fe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/perl/perl-fe.c b/src/perl/perl-fe.c index 503db4b6..5584ca85 100644 --- a/src/perl/perl-fe.c +++ b/src/perl/perl-fe.c @@ -61,7 +61,7 @@ static void perl_window_fill_hash(HV *hv, WINDOW_REC *window) hv_store(hv, "level", 5, newSViv(window->level), 0); hv_store(hv, "data_level", 8, newSViv(window->data_level), 0); - hv_store(hv, "hilight_color", 10, newSViv(window->hilight_color), 0); + hv_store(hv, "hilight_color", 10, 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); } |