[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:
parent
7423a6908f
commit
6db6ea879a
1 changed files with 3 additions and 1 deletions
|
@ -997,7 +997,9 @@ __SHELL:
|
|||
{
|
||||
c = str[i];
|
||||
if (c == '\'')
|
||||
STRING_make_char(c);
|
||||
{
|
||||
STRING_make("'\\'", 3);
|
||||
}
|
||||
STRING_make_char(c);
|
||||
/*
|
||||
if (c == '\n')
|
||||
|
|
Loading…
Reference in a new issue