diff options
author | jofret | 2009-07-17 15:06:39 +0000 |
---|---|---|
committer | jofret | 2009-07-17 15:06:39 +0000 |
commit | f1f313586603e3b04faf81aeecb91694f03efd1d (patch) | |
tree | 94065000fc8c602c9717af442fb1a48510f21640 /macros/SymbolTable | |
parent | d1fdf00c9f1a8d7340f9c49e8202926bb5de3ec9 (diff) | |
download | scilab2c-f1f313586603e3b04faf81aeecb91694f03efd1d.tar.gz scilab2c-f1f313586603e3b04faf81aeecb91694f03efd1d.tar.bz2 scilab2c-f1f313586603e3b04faf81aeecb91694f03efd1d.zip |
Adding NEPER constant
Diffstat (limited to 'macros/SymbolTable')
-rw-r--r-- | macros/SymbolTable/ST_GetInArgInfo.sci | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/macros/SymbolTable/ST_GetInArgInfo.sci b/macros/SymbolTable/ST_GetInArgInfo.sci index 9c93391c..5b18cd2a 100644 --- a/macros/SymbolTable/ST_GetInArgInfo.sci +++ b/macros/SymbolTable/ST_GetInArgInfo.sci @@ -68,6 +68,9 @@ for cntinarg = 1:NInArg if (tmpname == '%pi')
UpdatedInArg(cntinarg).Name = 'SCI2C_PI';
numvalue = %pi;
+ elseif (tmpname == '%e')
+ UpdatedInArg(cntinarg).Name = 'SCI2C_E';
+ numvalue = %e;
elseif (tmpname == '%T')
UpdatedInArg(cntinarg).Name = 'SCI2C_T';
numvalue = 1;
|