aboutsummaryrefslogtreecommitdiffstats
path: root/prompt_info
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:59:42 +0000
commit5e8f5bc39cb59cdca1182eed164c7d58470174e8 (patch)
treee30f1b7a9b7302d54648d41b25201b2e4e20de65 /prompt_info
parentupdated ignore (diff)
downloadirssi-scripts-5e8f5bc39cb59cdca1182eed164c7d58470174e8.tar.gz
irssi-scripts-5e8f5bc39cb59cdca1182eed164c7d58470174e8.zip
prompt: uberprompt no longer applies abstract replaces on prompt format.
Diffstat (limited to 'prompt_info')
-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 82a294c..7b3e022 100644
--- a/prompt_info/uberprompt.pl
+++ b/prompt_info/uberprompt.pl
@@ -274,7 +274,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.