diff --git a/all.sas b/all.sas index 531a9ab..3d19a32 100644 --- a/all.sas +++ b/all.sas @@ -4265,8 +4265,6 @@ filename &fref1 clear; @version 9.2 @author Allan Bowe - @copyright Macro People Ltd - this is a licensed product and - NOT FOR RESALE OR DISTRIBUTION. **/ @@ -6104,14 +6102,14 @@ select distinct lowcase(memname) We take the standard definition one step further by embedding the informat in the table header row, like so: - |var1:$|var2:best.|var3:date9.| + |var1:$32|var2:best.|var3:date9.| |---|---|---| |some text|42|01JAN1960| |blah|1|31DEC1999| Which resolves to: - |var1:$|var2:best.|var3:date9.| + |var1:$32|var2:best.|var3:date9.| |---|---|---| |some text|42|01JAN1960| |blah|1|31DEC1999| diff --git a/base/mp_getcols.sas b/base/mp_getcols.sas index 8c5f315..64f9c4d 100644 --- a/base/mp_getcols.sas +++ b/base/mp_getcols.sas @@ -26,8 +26,6 @@ @version 9.2 @author Allan Bowe - @copyright Macro People Ltd - this is a licensed product and - NOT FOR RESALE OR DISTRIBUTION. **/ diff --git a/base/mp_mdtablewrite.sas b/base/mp_mdtablewrite.sas index a5d3528..d3a9e45 100644 --- a/base/mp_mdtablewrite.sas +++ b/base/mp_mdtablewrite.sas @@ -14,14 +14,14 @@ We take the standard definition one step further by embedding the informat in the table header row, like so: - |var1:$|var2:best.|var3:date9.| + |var1:$32|var2:best.|var3:date9.| |---|---|---| |some text|42|01JAN1960| |blah|1|31DEC1999| Which resolves to: - |var1:$|var2:best.|var3:date9.| + |var1:$32|var2:best.|var3:date9.| |---|---|---| |some text|42|01JAN1960| |blah|1|31DEC1999|