-
Notifications
You must be signed in to change notification settings - Fork 550
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
\x{ffffffff} as string delim preserves \\ #15477
Comments
From @cpansproutOK, so this is the *real* bug I was after when I opened ticket #128737 (when I wasn’t thinking): $ ./miniperl -e 'eval "print q \x{fffffff}Hello, \\\\whirled!\n\x{fffffff}" or die;' That is expected. But add another f: $ ./miniperl -e 'eval "print q \x{ffffffff}Hello, \\\\whirled!\n\x{ffffffff}" or die;' And \\ in a q() string is now being preserved, instead of being changed to a single backslash. Same results from 5.8.7 to 5.25.3. -- Father Chrysostomos |
From @cpansproutOn Tue Jul 26 00:28:37 2016, sprout wrote:
Another symptom of the same bug: \x{100000027} acts as a single quote for regexps: $ ./miniperl -le 'eval "print qr \x{100000027}\$^O\x{100000027}" || die' -- Father Chrysostomos |
The RT System itself - Status changed from 'new' to 'open' |
From @khwilliamsonOn 07/26/2016 01:39 AM, Father Chrysostomos via RT wrote:
This is because termcode in scan_str() needs to be IV and not I32. |
From @khwilliamsonFixed by commit 2aa61ac PATCH: [perl #128738] Large code pt as string delim -- |
@khwilliamson - Status changed from 'open' to 'pending release' |
From @khwilliamsonThank you for filing this report. You have helped make Perl better. With the release today of Perl 5.26.0, this and 210 other issues have been Perl 5.26.0 may be downloaded via: If you find that the problem persists, feel free to reopen this ticket. |
@khwilliamson - Status changed from 'pending release' to 'resolved' |
Migrated from rt.perl.org#128738 (status was 'resolved')
Searchable as RT128738$
The text was updated successfully, but these errors were encountered: