summaryrefslogtreecommitdiff
path: root/macros/scilab_error.sci
diff options
context:
space:
mode:
Diffstat (limited to 'macros/scilab_error.sci')
-rw-r--r--macros/scilab_error.sci19
1 files changed, 0 insertions, 19 deletions
diff --git a/macros/scilab_error.sci b/macros/scilab_error.sci
deleted file mode 100644
index 24d1559..0000000
--- a/macros/scilab_error.sci
+++ /dev/null
@@ -1,19 +0,0 @@
-// ====================================================================
-// Template toolbox_skeleton
-// This file is released under the 3-clause BSD license. See COPYING-BSD.
-// ====================================================================
-//
-//
-function scilab_error(varargin)
-
- argSize = size(varargin);
-
- if argSize <> 1 then
- error(msprintf(_("toolbox_skeleton", "%s: I''m waiting for only one argument.\n"), "scilab_error"));
- end
-
- if argSize == 1 then
- error(msprintf(gettext("toolbox_skeleton", "%s: Yeah! %d is a good number of arguments but I prefer fail, sorry.\n"), "scilab_error", 1));
- end
-endfunction
-// ====================================================================