diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2003-05-20 21:42:34 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2003-05-20 21:42:34 +0000 |
commit | b86a1d4056ba66b98db67b9c8c68bfcc3cd8476b (patch) | |
tree | 499b0538dfb53f04778449c00e79e31f09624868 | |
parent | 91e9857f03fe5b8beae2682709e05fb00b9b8c81 (diff) | |
download | drakx-backup-do-not-use-b86a1d4056ba66b98db67b9c8c68bfcc3cd8476b.tar drakx-backup-do-not-use-b86a1d4056ba66b98db67b9c8c68bfcc3cd8476b.tar.gz drakx-backup-do-not-use-b86a1d4056ba66b98db67b9c8c68bfcc3cd8476b.tar.bz2 drakx-backup-do-not-use-b86a1d4056ba66b98db67b9c8c68bfcc3cd8476b.tar.xz drakx-backup-do-not-use-b86a1d4056ba66b98db67b9c8c68bfcc3cd8476b.zip |
typo fix
-rw-r--r-- | perl-install/printer/gimp.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/printer/gimp.pm b/perl-install/printer/gimp.pm index 91707a60e..079563ed7 100644 --- a/perl-install/printer/gimp.pm +++ b/perl-install/printer/gimp.pm @@ -284,7 +284,7 @@ sub addprinter { sub pop_spaces { my @lines = @_; - pop @lines while @lines $lines[-1] !~ /\S/; + pop @lines while @lines and $lines[-1] !~ /\S/; } sub removeentry { |