From 51a921162fc9342d37098f4b93ae044e4b95ad05 Mon Sep 17 00:00:00 2001 From: yabwon Date: Sat, 25 Jul 2020 12:37:39 +0200 Subject: [PATCH] version 20200725 version 20200725, descriptions to macros added --- generatePackage.sas | 2 +- listpackages.sas | 2 +- loadpackage.sas | 12 ++++++------ 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/generatePackage.sas b/generatePackage.sas index 5bcf79c..f90961d 100644 --- a/generatePackage.sas +++ b/generatePackage.sas @@ -56,7 +56,7 @@ dependencies in loading */ )/secure /*** HELP END ***/ -desc = 'Macro to generate SAS packages, version 20020725. Run %generatePackage() for help info.' +des = 'Macro to generate SAS packages, version 20020725. Run %generatePackage() for help info.' ; %if %superq(filesLocation) = %then %do; diff --git a/listpackages.sas b/listpackages.sas index 47c1d43..c91fa2e 100644 --- a/listpackages.sas +++ b/listpackages.sas @@ -54,7 +54,7 @@ %macro listPackages()/ -desc = 'Macro to list SAS package from `package` fileref, version 20020725.' +des = 'Macro to list SAS package from `package` fileref, version 20020725.' ; %local ls_tmp ps_tmp notes_tmp source_tmp; diff --git a/loadpackage.sas b/loadpackage.sas index eece867..8a30f1c 100644 --- a/loadpackage.sas +++ b/loadpackage.sas @@ -71,9 +71,9 @@ and use loadPackage in the form: %loadPackage(PiPackage, zip=disk, options=) */ -)/secure +)/secure /*** HELP END ***/ -desc = 'Macro to load SAS package, version 20020725. Run %loadPackage() for help info.' +des = 'Macro to load SAS package, version 20020725. Run %loadPackage() for help info.' ; %if %superq(packageName) = %then %do; @@ -203,7 +203,7 @@ desc = 'Macro to load SAS package, version 20020725. Run %loadPackage() for help */ )/secure /*** HELP END ***/ -desc = 'Macro to unload SAS package, version 20020725. Run %unloadPackage() for help info.' +des = 'Macro to unload SAS package, version 20020725. Run %unloadPackage() for help info.' ; %if %superq(packageName) = %then %do; @@ -305,7 +305,7 @@ desc = 'Macro to unload SAS package, version 20020725. Run %unloadPackage() for */ )/secure /*** HELP END ***/ -desc = 'Macro to get help about SAS package, version 20020725. Run %helpPackage() for help info.' +des = 'Macro to get help about SAS package, version 20020725. Run %helpPackage() for help info.' ; %if %superq(packageName) = %then %do; @@ -453,9 +453,9 @@ TODO: , sourcePath = /* location of the package, e.g. "www.some.page/", mind the "/" at the end */ , replace = 1 /* 1 = replace if the package already exist, 0 = otherwise */ ) -/secure +/secure /*** HELP END ***/ -desc = 'Macro to install SAS package, version 20020725. Run %installPackage() for help info.' +des = 'Macro to install SAS package, version 20020725. Run %%installPackage() for help info.' ; %if %superq(packageName) = %then %do;