# New Ticket Created by  Richard Hainsworth 
# Please include the string:  [perl #65538]
# in the subject line of all future correspondence about this issue. 
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=65538 >


git log
commit d4a0b3b8b5d3b9fb781ccdd154169d58472fbc06
Author: pmichaud <pmich...@pobox.com>
Date:   Sat May 2 13:35:22 2009 -0500

Bug (or at least inconsistent behaviour) seen in following snippet

# qq with embedded perl
print qq[first line
second line { (1,2,3).min }
third line
forth line { (1,2,3).max } and more text
fifth line
];

generates:
first line
second line 1third line
forth line 3 and more text
fifth line

Note how 'third line' is elided onto 'second line', but 'fifth' is 
separate to 'forth'

I suspect that in trimming white space from end of output after an 
embedded expression, the end of line is stripped off too.

Richard <finanalyst>

Reply via email to