[INTERPRETER]

* BUG: Shell$() now quotes quotes correctly.


git-svn-id: svn://localhost/gambas/trunk@6997 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
Benoît Minisini 2015-03-22 12:12:23 +00:00
parent 7423a6908f
commit 6db6ea879a

View file

@ -997,7 +997,9 @@ __SHELL:
{
c = str[i];
if (c == '\'')
STRING_make_char(c);
{
STRING_make("'\\'", 3);
}
STRING_make_char(c);
/*
if (c == '\n')