|
From: Earnie <ea...@us...> - 2011-07-02 16:49:58
|
Nathan Ridge wrote:
> One more question, just out of curiosity: why does the presence of quotes around the path
> "src\test.cpp" cause activation of the MSYS path translation feature?
It doesn't.
<file name="j.c">
#include <stdio.h>
int main(int argc, const char *argv[]) {
printf("%s", argv[1]);
return 0;
}
</file>
$ j "src\test.cpp"
src\test.cpp
--
Earnie
-- http://www.for-my-kids.com
|