Fix #17751 - q{} strings don't normalize CRLF to LF#23009
Fix #17751 - q{} strings don't normalize CRLF to LF#23009dkorpel wants to merge 1 commit intodlang:masterfrom
Conversation
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
|
Thanks for your pull request and interest in making D better, @dkorpel! We are looking forward to reviewing it, and you should be hearing from a maintainer soon.
Please see CONTRIBUTING.md for more information. If you have addressed all reviews or aren't sure how to proceed, don't hesitate to ping us with a simple comment. Bugzilla referencesYour PR doesn't reference any Bugzilla issue. If your PR contains non-trivial changes, please reference a Bugzilla issue or create a manual changelog.
|
|
|
||
| import support : compiles, stripDelimited; | ||
|
|
||
| // not using token string due to https://issues.dlang.org/show_bug.cgi?id=19315 |
There was a problem hiding this comment.
Still not using it because # is not valid in q{} strings (and a wysiwyg string is clearer here anyways)
|
This behavior of replacing |
Closes #17751
Apparently even single '\r' gets replaced by '\n' in string literals.