fix(basic.gblib): SET LANGUAGE fix.

This commit is contained in:
Rodrigo Rodriguez 2024-02-28 12:35:02 -03:00
parent 282f285788
commit cff2107270

View file

@ -734,7 +734,7 @@ export class KeywordsExpressions {
keywords[i++] = [
/^\s*(set language)(\s*)(.*)/gim,
($0, $1, $2, $3) => {
return `await dk.setLanguage ({pid: pid, ido${$3}})`;
return `await dk.setLanguage ({pid: pid, language: ${$3}})`;
}
];