1
0
mirror of https://github.com/sasjs/core.git synced 2026-01-03 15:40:05 +00:00

fix: upgrading mv_deleteviyafolder for viya 4 (and adding test)

This commit is contained in:
munja
2022-03-07 09:36:30 +00:00
parent f709a11dfb
commit b49e11bc79
5 changed files with 89 additions and 18 deletions

View File

@@ -172,6 +172,12 @@ data _null_;
else if sourcechar='n' then put '0A'x;
else if sourcechar='r' then put '0D'x;
else if sourcechar='t' then put '09'x;
else if sourcechar='u' then do;
length uni $4;
input uni $ 4. @@;
sourcechar=unicode('\u'!!uni);
put sourcechar char1.;
end;
else do;
call symputx('errmsg',"Uncaught escape char: "!!sourcechar,'l');
call symputx('syscc',99);