diff options
author | Tom Feist <shabble@metavore.org> | 2010-10-13 11:35:07 +0000 |
---|---|---|
committer | Tom Feist <shabble@metavore.org> | 2010-10-13 11:35:07 +0000 |
commit | 8edb0c6866d7263a11efa11bbee4e2f738ac7d35 (patch) | |
tree | 8b652af70f07cec66ae1d819c5593dbf93eb5082 /prompt_info/uberprompt.pl | |
parent | scrollminder now uses uberprompt properly (UP_INNER mode) (diff) | |
download | irssi-scripts-8edb0c6866d7263a11efa11bbee4e2f738ac7d35.tar.gz irssi-scripts-8edb0c6866d7263a11efa11bbee4e2f738ac7d35.zip |
fixed undef bug in uberprompt
Diffstat (limited to 'prompt_info/uberprompt.pl')
-rw-r--r-- | prompt_info/uberprompt.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/prompt_info/uberprompt.pl b/prompt_info/uberprompt.pl index 3bb3155..79717ae 100644 --- a/prompt_info/uberprompt.pl +++ b/prompt_info/uberprompt.pl @@ -125,7 +125,7 @@ our %IRSSI = my $DEBUG_ENABLED = 0; sub DEBUG { $DEBUG_ENABLED } -my $prompt_data = undef; +my $prompt_data = ''; my $prompt_data_pos = 'UP_INNER'; my $prompt_last = ''; |