Skip to content

Commit

Permalink
Merge pull request #8 from macropeople/development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
allanbowe committed Mar 13, 2020
2 parents a20c49e + 922185c commit 84f244c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
5 changes: 3 additions & 2 deletions macrocore.sas
Original file line number Diff line number Diff line change
Expand Up @@ -4773,14 +4773,15 @@ run;
%local work tmpfile;
%let work=%sysfunc(pathname(work));
%let tmpfile=__mm_createwebservice.temp;
%local x fref freflist;
%local x fref freflist mod;
%let freflist= &adapter &precode &code ;
%do x=1 %to %sysfunc(countw(&freflist));
%if &x>1 %then %let mod=mod;

%let fref=%scan(&freflist,&x);
%put &sysmacroname: adding &fref;
data _null_;
file "&work/&tmpfile" lrecl=3000 mod;
file "&work/&tmpfile" lrecl=3000 &mod;
infile &fref;
input;
put _infile_;
Expand Down
5 changes: 3 additions & 2 deletions mc_all.sas
Original file line number Diff line number Diff line change
Expand Up @@ -4774,14 +4774,15 @@ run;
%local work tmpfile;
%let work=%sysfunc(pathname(work));
%let tmpfile=__mm_createwebservice.temp;
%local x fref freflist;
%local x fref freflist mod;
%let freflist= &adapter &precode &code ;
%do x=1 %to %sysfunc(countw(&freflist));
%if &x>1 %then %let mod=mod;

%let fref=%scan(&freflist,&x);
%put &sysmacroname: adding &fref;
data _null_;
file "&work/&tmpfile" lrecl=3000 mod;
file "&work/&tmpfile" lrecl=3000 &mod;
infile &fref;
input;
put _infile_;
Expand Down
5 changes: 3 additions & 2 deletions meta/mm_createwebservice.sas
Original file line number Diff line number Diff line change
Expand Up @@ -269,14 +269,15 @@ run;
%local work tmpfile;
%let work=%sysfunc(pathname(work));
%let tmpfile=__mm_createwebservice.temp;
%local x fref freflist;
%local x fref freflist mod;
%let freflist= &adapter &precode &code ;
%do x=1 %to %sysfunc(countw(&freflist));
%if &x>1 %then %let mod=mod;

%let fref=%scan(&freflist,&x);
%put &sysmacroname: adding &fref;
data _null_;
file "&work/&tmpfile" lrecl=3000 mod;
file "&work/&tmpfile" lrecl=3000 &mod;
infile &fref;
input;
put _infile_;
Expand Down

0 comments on commit 84f244c

Please sign in to comment.