summaryrefslogtreecommitdiffstats
path: root/urxvt
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2009-07-03 18:39:53 -0500
committerJesse Luehrs <doy@tozt.net>2009-07-03 18:39:53 -0500
commitaede190e15b19d8d280fe9ceadf887fe7a59ebe0 (patch)
tree69541a290625b8b77154c4ea71033f7955bf39fd /urxvt
parent32147c667441a4b45774ba44e6e85f95e0075143 (diff)
downloadconf-aede190e15b19d8d280fe9ceadf887fe7a59ebe0.tar.gz
conf-aede190e15b19d8d280fe9ceadf887fe7a59ebe0.zip
don't show anything when entering the password
Diffstat (limited to 'urxvt')
-rw-r--r--urxvt/pwsafe2
1 files changed, 1 insertions, 1 deletions
diff --git a/urxvt/pwsafe b/urxvt/pwsafe
index 8b21bcc..e0ab1af 100644
--- a/urxvt/pwsafe
+++ b/urxvt/pwsafe
@@ -76,7 +76,7 @@ sub prompt {
sub prompt_redisplay {
my ($self) = @_;
my $buf = $self->{prompt_buffer};
- $buf =~ s/././g if $self->{prompt_hide};
+ $buf = '' if $self->{prompt_hide};
my $msg = $self->{prompt_msg} . $buf. "█";
$self->{prompt} = $self->overlay(0, -1, $self->ncol, 1, urxvt::OVERLAY_RSTYLE, 0);
$self->{prompt}->set(0, 0, $self->special_encode ($msg));