Skip to content

Commit

Permalink
fix: adding a period to enable formats such as anydtdtme
Browse files Browse the repository at this point in the history
  • Loading branch information
allanbowe committed Nov 2, 2020
1 parent a88efac commit cafffbb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions all.sas
Original file line number Diff line number Diff line change
Expand Up @@ -2004,6 +2004,7 @@ data _null_;
if type=1 then informat='best.';
else informat=cats('$',length,'.');
end;
else informat=cats(informat,'.');
in=catx(' ',in,name,':',informat);
if last then do;
call symputx('instat',in,'l');
Expand Down
1 change: 1 addition & 0 deletions base/mp_csv2ds.sas
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ data _null_;
if type=1 then informat='best.';
else informat=cats('$',length,'.');
end;
else informat=cats(informat,'.');
in=catx(' ',in,name,':',informat);
if last then do;
call symputx('instat',in,'l');
Expand Down

0 comments on commit cafffbb

Please sign in to comment.