Skip to content

Commit

Permalink
fix: support for tab characters, closes https://github.com/macropeopl…
Browse files Browse the repository at this point in the history
  • Loading branch information
vrh authored and vrh committed Sep 4, 2020
1 parent 3318974 commit 578ef26
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions all.sas
Original file line number Diff line number Diff line change
Expand Up @@ -7082,6 +7082,7 @@ data _null_;
when ('
') rec='0A'x;
when ('
') rec='0D'x;
when ('$' ) rec='$' ;
when ('	') rec='09'x;
otherwise putlog "WARNING: missing value for " entity=;
end;
rc =fput(fileid, substr(rec,1,1));
Expand Down Expand Up @@ -7996,6 +7997,7 @@ data _null_;
when ('
') rec='0A'x;
when ('
') rec='0D'x;
when ('$' ) rec='$' ;
when ('	') rec='09'x;
otherwise putlog "%str(WARN)ING: missing value for " entity=;
end;
rc =fput(fileid, substr(rec,1,1));
Expand Down Expand Up @@ -8630,6 +8632,7 @@ run;
when ('
') rec='0A'x;
when ('
') rec='0D'x;
when ('$' ) rec='$' ;
when ('	') rec='09'x;
otherwise putlog "WARNING: missing value for " entity=;
end;
rc =fput(fileid, substr(rec,1,1));
Expand Down
1 change: 1 addition & 0 deletions meta/mm_getdocument.sas
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ data _null_;
when ('
') rec='0A'x;
when ('
') rec='0D'x;
when ('$' ) rec='$' ;
when ('	') rec='09'x;
otherwise putlog "WARNING: missing value for " entity=;
end;
rc =fput(fileid, substr(rec,1,1));
Expand Down
1 change: 1 addition & 0 deletions meta/mm_getstpcode.sas
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ data _null_;
when ('
') rec='0A'x;
when ('
') rec='0D'x;
when ('$' ) rec='$' ;
when ('	') rec='09'x;
otherwise putlog "%str(WARN)ING: missing value for " entity=;
end;
rc =fput(fileid, substr(rec,1,1));
Expand Down
1 change: 1 addition & 0 deletions meta/mm_getwebappsrvprops.sas
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ run;
when ('
') rec='0A'x;
when ('
') rec='0D'x;
when ('$' ) rec='$' ;
when ('	') rec='09'x;
otherwise putlog "WARNING: missing value for " entity=;
end;
rc =fput(fileid, substr(rec,1,1));
Expand Down

0 comments on commit 578ef26

Please sign in to comment.