diff options
author | Siep Kroonenberg <siepo@cybercomm.nl> | 2008-08-21 13:59:47 +0000 |
---|---|---|
committer | Siep Kroonenberg <siepo@cybercomm.nl> | 2008-08-21 13:59:47 +0000 |
commit | 39c48d617f828e8284bab29afce55737c45254aa (patch) | |
tree | 7c9b83e7f6a432f76b820f0d59a1f7e2fe2f2580 /Master/texmf | |
parent | c341160e5c9859df68c2d8acf2ddde42fd52d4ad (diff) |
Windows uninstaller: cancel does now cancel.
git-svn-id: svn://tug.org/texlive/trunk@10391 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf')
-rw-r--r-- | Master/texmf/scripts/texlive/uninstall-win32.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/texmf/scripts/texlive/uninstall-win32.pl b/Master/texmf/scripts/texlive/uninstall-win32.pl index 7cd1bf5c979..8f14630f832 100644 --- a/Master/texmf/scripts/texlive/uninstall-win32.pl +++ b/Master/texmf/scripts/texlive/uninstall-win32.pl @@ -33,7 +33,7 @@ $f->pack(-padx => "10m", -pady => "5m"); my $ok = $f->Button(-text => "Ok", -command => sub { $mw->destroy; doit(); exit(0); }); my $cancel = $f->Button(-text => "Cancel", - -command => sub { $mw->destroy; exit(0); }); + -command => sub { $mw->destroy; exit(1); }); $ok->pack(-side => 'left', -padx => "3m"); $cancel->pack(-side => 'left' , -padx => "3m"); |