summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjofret2010-06-23 17:09:06 +0000
committerjofret2010-06-23 17:09:06 +0000
commit592a9e6042b7f7349479943a4b55e1bd2769319d (patch)
tree4fa748fab2eb9631a2e640a93f4adc197971bdb9
parent0629067482ff23a6b72bec974dba6b5d0c837b44 (diff)
downloadscilab2c-592a9e6042b7f7349479943a4b55e1bd2769319d.tar.gz
scilab2c-592a9e6042b7f7349479943a4b55e1bd2769319d.tar.bz2
scilab2c-592a9e6042b7f7349479943a4b55e1bd2769319d.zip
You are not alone svn rm macros/GeneralFunctions/SCI2Cerror.sci --forcesvn rm macros/GeneralFunctions/SCI2Cerror.sci --force
-rw-r--r--scilab2c/macros/GeneralFunctions/SCI2Cerror.sci28
1 files changed, 0 insertions, 28 deletions
diff --git a/scilab2c/macros/GeneralFunctions/SCI2Cerror.sci b/scilab2c/macros/GeneralFunctions/SCI2Cerror.sci
deleted file mode 100644
index 25851a2a..00000000
--- a/scilab2c/macros/GeneralFunctions/SCI2Cerror.sci
+++ /dev/null
@@ -1,28 +0,0 @@
-function SCI2Cerror(errorstring)
-// function SCI2Cerror(errorstring)
-// -----------------------------------------------------------------
-// It is the error function but before issuing the error, performs
-// the mclose('all');
-//
-// Input data:
-// errorstring: string which specifies the error message.
-//
-// Output data:
-// ---
-//
-// Status:
-// 02-May-2007 -- Nutricato Raffaele: Author.
-//
-// Copyright 2007 Raffaele Nutricato.
-// Contact: raffaele.nutricato@tiscali.it
-// -----------------------------------------------------------------
-
-// ------------------------------
-// --- Check input arguments. ---
-// ------------------------------
-SCI2CNInArgCheck(argn(2),1,1);
-
-
-mclose('all')
-error('###SCI2CERROR: '+errorstring);
-endfunction