From c4e8b9f3e48f98e68c03fcb7f774407dc7f463b1 Mon Sep 17 00:00:00 2001 From: Christopher Mortimer Date: Fri, 4 Sep 2020 08:41:30 +1000 Subject: [PATCH 1/2] adding tab to escaped chars --- mc_all.sas | 3 +++ meta/mm_getdocument.sas | 1 + meta/mm_getstpcode.sas | 1 + meta/mm_getwebappsrvprops.sas | 1 + 4 files changed, 6 insertions(+) diff --git a/mc_all.sas b/mc_all.sas index f90fa06..d6f0c68 100644 --- a/mc_all.sas +++ b/mc_all.sas @@ -6904,6 +6904,7 @@ data _null_; when ('"') rec='"' ; when (' ') rec='0A'x; when (' ') rec='0D'x; + when (' ') rec='09'x; when ('$' ) rec='$' ; otherwise putlog "WARNING: missing value for " entity=; end; @@ -7818,6 +7819,7 @@ data _null_; when ('"') rec='"' ; when (' ') rec='0A'x; when (' ') rec='0D'x; + when (' ') rec='09'x; when ('$' ) rec='$' ; otherwise putlog "%str(WARN)ING: missing value for " entity=; end; @@ -8385,6 +8387,7 @@ run; when ('"') rec='"' ; when (' ') rec='0A'x; when (' ') rec='0D'x; + when (' ') rec='09'x; when ('$' ) rec='$' ; otherwise putlog "WARNING: missing value for " entity=; end; diff --git a/meta/mm_getdocument.sas b/meta/mm_getdocument.sas index 52ab691..43d3f6d 100644 --- a/meta/mm_getdocument.sas +++ b/meta/mm_getdocument.sas @@ -123,6 +123,7 @@ data _null_; when ('"') rec='"' ; when (' ') rec='0A'x; when (' ') rec='0D'x; + when (' ') rec='09'x; when ('$' ) rec='$' ; otherwise putlog "WARNING: missing value for " entity=; end; diff --git a/meta/mm_getstpcode.sas b/meta/mm_getstpcode.sas index bb4720f..8305276 100644 --- a/meta/mm_getstpcode.sas +++ b/meta/mm_getstpcode.sas @@ -122,6 +122,7 @@ data _null_; when ('"') rec='"' ; when (' ') rec='0A'x; when (' ') rec='0D'x; + when (' ') rec='09'x; when ('$' ) rec='$' ; otherwise putlog "%str(WARN)ING: missing value for " entity=; end; diff --git a/meta/mm_getwebappsrvprops.sas b/meta/mm_getwebappsrvprops.sas index 6e69d1f..d03c593 100644 --- a/meta/mm_getwebappsrvprops.sas +++ b/meta/mm_getwebappsrvprops.sas @@ -97,6 +97,7 @@ run; when ('"') rec='"' ; when (' ') rec='0A'x; when (' ') rec='0D'x; + when (' ') rec='09'x; when ('$' ) rec='$' ; otherwise putlog "WARNING: missing value for " entity=; end; From 669797294b27411699ac8533121b7a237058f636 Mon Sep 17 00:00:00 2001 From: Christopher Mortimer <30710145+mortie23@users.noreply.github.com> Date: Fri, 4 Sep 2020 08:50:02 +1000 Subject: [PATCH 2/2] Update mc_all.sas missed this in a copy paste --- mc_all.sas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mc_all.sas b/mc_all.sas index d6f0c68..c632dda 100644 --- a/mc_all.sas +++ b/mc_all.sas @@ -6904,7 +6904,7 @@ data _null_; when ('"') rec='"' ; when (' ') rec='0A'x; when (' ') rec='0D'x; - when (' ') rec='09'x; + when (' ') rec='09'x; when ('$' ) rec='$' ; otherwise putlog "WARNING: missing value for " entity=; end;