aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Feist <shabble@metavore.org>2010-10-14 20:58:18 +0000
committerTom Feist <shabble@metavore.org>2010-10-14 20:58:18 +0000
commit9aa90ce4aea27082948602587197557bbaca1b3d (patch)
tree11bb5ec7ec2435eeccf210cc42dae496c971ebab
parentmisc: added gitignore to dev branch (diff)
downloadirssi-scripts-9aa90ce4aea27082948602587197557bbaca1b3d.tar.gz
irssi-scripts-9aa90ce4aea27082948602587197557bbaca1b3d.zip
prompt: uberprompt no longer applies abstract replaces on prompt format.
-rw-r--r--prompt_info/uberprompt.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/prompt_info/uberprompt.pl b/prompt_info/uberprompt.pl
index 0581dd3..f6fd775 100644
--- a/prompt_info/uberprompt.pl
+++ b/prompt_info/uberprompt.pl
@@ -286,7 +286,8 @@ sub uberprompt_draw {
my $prompt = ''; # rendered content of the prompt.
my $theme = Irssi::current_theme;
- $prompt = $theme->format_expand("{uberprompt $prompt_arg}");
+ $prompt = $theme->format_expand
+ ("{uberprompt $prompt_arg}", Irssi::EXPAND_FLAG_IGNORE_REPLACES);
if ($prompt_data_pos eq 'UP_ONLY') {
$prompt =~ s/\$\$uber//; # no need for recursive prompting, I hope.