Skip to content

Commit

Permalink
fix: @cond on new line to prevent parsing issues in sasjs cli
Browse files Browse the repository at this point in the history
  • Loading branch information
allanbowe committed Dec 2, 2020
1 parent 6f86ed6 commit bedc2a4
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 8 deletions.
12 changes: 8 additions & 4 deletions all.sas
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ options noquotelenmax;
@version 9.2
@author Allan Bowe
**/ /** @cond */
**/
/** @cond */

%macro mf_abort(mac=mf_abort.sas, type=, msg=, iftrue=%str(1=1)
)/*/STORE SOURCE*/;
Expand Down Expand Up @@ -204,7 +205,8 @@ options noquotelenmax;
@version 8
@author Allan Bowe
**/ /** @cond */
**/
/** @cond */

%macro mf_existfeature(feature
)/*/STORE SOURCE*/;
Expand Down Expand Up @@ -239,7 +241,8 @@ options noquotelenmax;
@param var (positional) - variable name
@version 9.2
@author Allan Bowe
**/ /** @cond */
**/
/** @cond */

%macro mf_existvar(libds /* 2 part dataset name */
, var /* variable name */
Expand Down Expand Up @@ -404,7 +407,8 @@ options noquotelenmax;
@version 9.2
@author Allan Bowe
**/ /** @cond */
**/
/** @cond */

%macro mf_getengine(libref
)/*/STORE SOURCE*/;
Expand Down
3 changes: 2 additions & 1 deletion base/mf_abort.sas
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@
@version 9.2
@author Allan Bowe
**/ /** @cond */
**/
/** @cond */

%macro mf_abort(mac=mf_abort.sas, type=, msg=, iftrue=%str(1=1)
)/*/STORE SOURCE*/;
Expand Down
3 changes: 2 additions & 1 deletion base/mf_existfeature.sas
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
@version 8
@author Allan Bowe
**/ /** @cond */
**/
/** @cond */

%macro mf_existfeature(feature
)/*/STORE SOURCE*/;
Expand Down
3 changes: 2 additions & 1 deletion base/mf_existvar.sas
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
@param var (positional) - variable name
@version 9.2
@author Allan Bowe
**/ /** @cond */
**/
/** @cond */

%macro mf_existvar(libds /* 2 part dataset name */
, var /* variable name */
Expand Down
3 changes: 2 additions & 1 deletion base/mf_getengine.sas
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@
@version 9.2
@author Allan Bowe
**/ /** @cond */
**/
/** @cond */

%macro mf_getengine(libref
)/*/STORE SOURCE*/;
Expand Down

0 comments on commit bedc2a4

Please sign in to comment.