1
0
mirror of https://github.com/sasjs/core.git synced 2026-01-03 15:40:05 +00:00

fix: incorrect filepath when using filerefs in mp_dirlist

This commit is contained in:
2020-10-29 12:08:07 +01:00
parent 6f06e5540d
commit d9a82c0bdf
4 changed files with 10 additions and 8 deletions

View File

@@ -3,7 +3,7 @@
@brief Returns the engine type of a SAS library
@details Usage:
%put %mf_getEngine(SASHELP);
%put %mf_getengine(SASHELP);
returns:
> V9
@@ -21,9 +21,10 @@
@version 9.2
@author Allan Bowe
**/
%macro mf_getEngine(libref
**/ /** \cond */
%macro mf_getengine(libref
)/*/STORE SOURCE*/;
%local dsid engnum rc engine;
@@ -42,3 +43,5 @@
&engine
%mend;
/** \endcond */