Actions
Bug #22201
closedruby.exe reads `"AA\ " BB` as a single argument
Bug #22201:
ruby.exe reads `"AA\ " BB` as a single argument
Description
A backslash escapes a double quote that sits beyond a whitespace character.
This is not intentional, right? The escape is cancelled when almost any other character appears, but I think whitespace seems to have been simply forgotten.
The fix is so simple:
Updated by mame (Yusuke Endoh) 19 days ago
- Status changed from Open to Closed
Applied in changeset git|ecc6edae550059c6414af728f0ada809d7547b97.
win32: a backslash before whitespace escaped the closing quote
Inside double quotes, the escape was cancelled by almost any character
but not by whitespace, so "AA\ " BB came out as a single argument.
[Bug #22201]
Actions