home *** CD-ROM | disk | FTP | other *** search
/ H4CK3R 14 / hacker14.iso / programacao / visual / perl.exe / {app} / Library / Perl / bugs < prev    next >
Encoding:
Text File  |  2002-10-30  |  679 b   |  19 lines

  1. Perltidy open BUGS
  2.      You can help perltidy evolve into a better program.  If you think you
  3.      have hit a bug or weird behavior, or have a suggested improvement,
  4.      please send a note to perltidy at users.sourceforge.net.
  5.  
  6.      This file only lists open bugs.  For bugs which have been fixed, 
  7.      see the ChangeLog.  
  8.  
  9.   A here-doc invoked through an 'e' modifier on a pattern replacement text is not recognized
  10.     For example, the output of perltidy for this script has a syntax error:
  11.  
  12.             my $text="Hello World!\n";
  13.             $text =~ s@Hello@<<'END'@e;
  14.             Goodbye 
  15.             Cruel
  16.             END
  17.             print "$text\n";
  18.  
  19.