]> git.donarmstrong.com Git - perltidy.git/blob - BUGS
[svn-inject] Installing original source of perltidy
[perltidy.git] / BUGS
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