Consider:

sub test
  {
    $foo
      and die <<EOF;
died
EOF
print "OK\n";
  }

Over the print line, if I type [Tab], then I get:

sub test
  {
    $foo
      and die <<EOF;
died
EOF
      print "OK\n";
  }

instead of:

sub test
  {
    $foo
      and die <<EOF;
died
EOF
    print "OK\n";
  }

-- 
Vincent Lefèvre <[EMAIL PROTECTED]> - Web: <http://www.vinc17.org/>
100% accessible validated (X)HTML - Blog: <http://www.vinc17.org/blog/>
Work: CR INRIA - computer arithmetic / Arenaire project (LIP, ENS-Lyon)

Reply via email to