From: Simon G <sim...@us...> - 2002-06-07 23:12:34
|
Update of /cvsroot/rideplot/rideplot/src In directory usw-pr-cvs1:/tmp/cvs-serv27489 Modified Files: rideplot Log Message: Fixed ?? Waypoint parsing for gpstrans format. /s/s+ instead of /t Tab isn't always true, especially after "cut and pastes" Index: rideplot =================================================================== RCS file: /cvsroot/rideplot/rideplot/src/rideplot,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** rideplot 5 Jun 2002 07:34:04 -0000 1.3 --- rideplot 7 Jun 2002 23:12:31 -0000 1.4 *************** *** 293,297 **** if ( /^W\s+/ ) { my ( undef, $name, $comment, $date, $lat, $lon ) = ! split ( /\t/ ); $name =~ s/^\s*//o; $name =~ s/\s*$//o; --- 293,297 ---- if ( /^W\s+/ ) { my ( undef, $name, $comment, $date, $lat, $lon ) = ! split ( /\s\s+/ ); $name =~ s/^\s*//o; $name =~ s/\s*$//o; |