Skip to content

Commit

Permalink
fix: adding des= macro option to mf_abort
Browse files Browse the repository at this point in the history
  • Loading branch information
munja committed Jan 2, 2023
1 parent fc0c96d commit 1af52a6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions all.sas
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ options noquotelenmax;
**/

%macro mf_abort(mac=mf_abort.sas, msg=, iftrue=%str(1=1)
)/*/STORE SOURCE*/;
)/des='ungraceful abort' /*STORE SOURCE*/;

%if not(%eval(%unquote(&iftrue))) %then %return;

Expand All @@ -42,7 +42,8 @@ options noquotelenmax;

%mend mf_abort;

/** @endcond *//**
/** @endcond */
/**
@file
@brief de-duplicates a macro string
@details Removes all duplicates from a string of words. A delimeter can be
Expand Down
4 changes: 2 additions & 2 deletions base/mf_abort.sas
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
**/

%macro mf_abort(mac=mf_abort.sas, msg=, iftrue=%str(1=1)
)/*/STORE SOURCE*/;
)/des='ungraceful abort' /*STORE SOURCE*/;

%if not(%eval(%unquote(&iftrue))) %then %return;

Expand All @@ -24,4 +24,4 @@

%mend mf_abort;

/** @endcond */
/** @endcond */

0 comments on commit 1af52a6

Please sign in to comment.