I'm trying to understand why BC3 is finding more differences than it should between these lines. All lines with text are displayed as different. If I copy the only different line (the first one), all lines are then displayed as the same. (The are .pl files, if that makes a difference.)
<Left>
use lib '/app/deployment/deploy_ident';
# CPAN provided modules
use AppConfig qw(:argcount);
<Right>
# CPAN provided modules
use AppConfig qw(:argcount);
<Left>
use lib '/app/deployment/deploy_ident';
# CPAN provided modules
use AppConfig qw(:argcount);
<Right>
# CPAN provided modules
use AppConfig qw(:argcount);
Comment