diff options
author | Tom Feist <shabble@metavore.org> | 2011-11-25 02:49:08 +0000 |
---|---|---|
committer | Tom Feist <shabble@metavore.org> | 2011-11-25 02:49:08 +0000 |
commit | 35e142401bed79e70f1dafaa6561792469bdfd12 (patch) | |
tree | 5f057aa9088fe03e961e668b7753f39bea7a251e /history-search | |
parent | update template with some generic debugging features. (diff) | |
download | irssi-scripts-35e142401bed79e70f1dafaa6561792469bdfd12.tar.gz irssi-scripts-35e142401bed79e70f1dafaa6561792469bdfd12.zip |
TODO: repro & fix bug indicated in comment.
Diffstat (limited to 'history-search')
-rw-r--r-- | history-search/rl_history_search.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/history-search/rl_history_search.pl b/history-search/rl_history_search.pl index 016249d..7402a83 100644 --- a/history-search/rl_history_search.pl +++ b/history-search/rl_history_search.pl @@ -396,7 +396,8 @@ sub next_match { sub update_input { my $match = get_history_match(); - Irssi::gui_input_set($match); + # TODO: Use of uninitialized value in subroutine entry at /Users/shabble/projects/tmp/test/irssi-shab/scripts/rl_history_search.pl line 399. + Irssi::gui_input_set($match); # <--- here. Irssi::gui_input_set_pos(length $match); } |