diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-07-24 10:23:21 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-07-24 10:23:21 +0000 |
commit | 7e5672eb837597a08dc886dc022f704be9b97665 (patch) | |
tree | 51aba798e9eb6501aa32cc1cfdbf4d759a031b3b /perl-install/Xconfig.pm | |
parent | 5d8a5663900537c6695f08692920d666f5ec9213 (diff) | |
download | drakx-7e5672eb837597a08dc886dc022f704be9b97665.tar drakx-7e5672eb837597a08dc886dc022f704be9b97665.tar.gz drakx-7e5672eb837597a08dc886dc022f704be9b97665.tar.bz2 drakx-7e5672eb837597a08dc886dc022f704be9b97665.tar.xz drakx-7e5672eb837597a08dc886dc022f704be9b97665.zip |
generalize the use of chomp_ as the functional alternative to chomp (and works on lists)
Diffstat (limited to 'perl-install/Xconfig.pm')
-rw-r--r-- | perl-install/Xconfig.pm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/perl-install/Xconfig.pm b/perl-install/Xconfig.pm index c91f5f666..0797d6c8b 100644 --- a/perl-install/Xconfig.pm +++ b/perl-install/Xconfig.pm @@ -203,9 +203,8 @@ sub getinfoFromDDC { } my ($h, $v, $size, @m) = @l; - chop $h; chop $v; - $O->{hsyncrange} ||= $h; - $O->{vsyncrange} ||= $v; + $O->{hsyncrange} ||= chomp_($h); + $O->{vsyncrange} ||= chomp_($v); $O->{size} ||= to_float($size); $O->{modelines} ||= join '', @m; $o; |