Well, this sounds like a basic coding mistake, but you haven't actually shown us any
of your code. My best bit of advice would be to 1) use strict, 2) use warnings, and
3) check if you're doing something along these lines:
while(<FILEHANDLE>){
print $_;
$test = <FILEHANDLE>;
print $test;
}
which would pull down an extra line while you're assigning the variable and cause it
to seem to skip one.
-----Original Message-----
From: Eric Walker [mailto:[EMAIL PROTECTED]
Sent: Wed 12/31/2003 9:57 AM
To: perlgroup
Cc:
Subject: <GIN>
OK, some how my $_ variable is out of sync with my <> operator.