summaryrefslogtreecommitdiff
path: root/Master
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2009-07-30 11:55:35 +0000
committerNorbert Preining <preining@logic.at>2009-07-30 11:55:35 +0000
commit03ab3b6a7d6b750b00bc8d786e4b088385af53bb (patch)
tree6b2defb6c1b10494d53cc372ddaf16b1200830bc /Master
parentee3394b240cea818403feb9e1e03fea5e9a8cb67 (diff)
fix for tlmgrgui to use %opts instead of $opt_ in some places
git-svn-id: svn://tug.org/texlive/trunk@14490 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rwxr-xr-xMaster/texmf/scripts/texlive/tlmgrgui/tlmgrgui.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgrgui/tlmgrgui.pl b/Master/texmf/scripts/texlive/tlmgrgui/tlmgrgui.pl
index 6b55cc79b26..7798fad70c9 100755
--- a/Master/texmf/scripts/texlive/tlmgrgui/tlmgrgui.pl
+++ b/Master/texmf/scripts/texlive/tlmgrgui/tlmgrgui.pl
@@ -243,8 +243,8 @@ my $loc = $localtlpdb->option("location");
if (defined($loc)) {
$location = $loc;
}
-if (defined($opt_location)) {
- $location = $opt_location;
+if (defined($opts{"location"})) {
+ $location = $opts{"location"};
}
our @allpackages;
@@ -302,7 +302,7 @@ $balloon->attach(
# it that way
$balloon->attach(
$top->Checkbutton(-text => ___"debug",
- -onvalue => ($opt_verbosity == 0 ? 1 : $opt_verbosity),
+ -onvalue => ($::opt_verbosity == 0 ? 1 : $::opt_verbosity),
-variable => \$::opt_verbosity)->pack(-side => 'left'),
-balloonmsg => ___"debugballoon");