diff options
author | simon | 2009-08-24 12:13:37 +0000 |
---|---|---|
committer | simon | 2009-08-24 12:13:37 +0000 |
commit | 8de1c0bcf7c5a82052028741b7a0d982104095bf (patch) | |
tree | bcd04c895774c524ea33170a6380ef458515b7d9 /macros/ASTManagement | |
parent | 759bfbb8ee342ffbf7ea1d44249fda8f7075ec85 (diff) | |
download | scilab2c-8de1c0bcf7c5a82052028741b7a0d982104095bf.tar.gz scilab2c-8de1c0bcf7c5a82052028741b7a0d982104095bf.tar.bz2 scilab2c-8de1c0bcf7c5a82052028741b7a0d982104095bf.zip |
updated Operator2FunName to handle \ operator
updated/corrected INIT_FillSCI2LibCDirs
added the path to new files in getAllSources
Diffstat (limited to 'macros/ASTManagement')
-rw-r--r-- | macros/ASTManagement/Operator2FunName.sci | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/macros/ASTManagement/Operator2FunName.sci b/macros/ASTManagement/Operator2FunName.sci index 85271e9c..1ca5825b 100644 --- a/macros/ASTManagement/Operator2FunName.sci +++ b/macros/ASTManagement/Operator2FunName.sci @@ -58,8 +58,9 @@ elseif (OperatorName == './.') elseif (OperatorName == '.\')
FunName = FuncPrefix+'DotBackSlash'+FuncSuffix;
elseif (OperatorName == '\')
- PrintStringInfo('SCI2CERROR: Operator ""'+OperatorName+'"" not supported.','','stout','y');
- SCI2Cerror(' ');
+ //PrintStringInfo('SCI2CERROR: Operator ""'+OperatorName+'"" not supported.','','stout','y');
+ //SCI2Cerror(' '); + FunName = FuncPrefix+'BackSlash'+FuncSuffix;
elseif (OperatorName == '.\')
PrintStringInfo('SCI2CERROR: Operator ""'+OperatorName+'"" not supported.','','stout','y');
SCI2Cerror(' ');
|