summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorpmarecha2010-06-24 08:23:33 +0000
committerpmarecha2010-06-24 08:23:33 +0000
commit1bfd963d0be95339496051e164304b43be97aaa3 (patch)
tree934162e7d3d647cbbd017a9ec8b63f9e92a4757b /etc
parent41591b250b76001f7d0a1bf1d000f3f607b15410 (diff)
downloadscilab2c-1bfd963d0be95339496051e164304b43be97aaa3.tar.gz
scilab2c-1bfd963d0be95339496051e164304b43be97aaa3.tar.bz2
scilab2c-1bfd963d0be95339496051e164304b43be97aaa3.zip
Fix help load
Diffstat (limited to 'etc')
-rw-r--r--etc/scilab2c.start2
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/scilab2c.start b/etc/scilab2c.start
index 620f5fe9..8e77e350 100644
--- a/etc/scilab2c.start
+++ b/etc/scilab2c.start
@@ -28,7 +28,7 @@ clear pathmacros;
if or(getscilabmode() == ["NW";"STD"]) then
mprintf("\tLoad help\n");
path_addchapter = pathconvert(root_tlbx+"/jar");
- if ( isdir(path_addchapter) <> [] ) then
+ if isdir(path_addchapter) then
add_help_chapter("Scilab 2 C", path_addchapter, %F);
clear add_help_chapter path_addchapter
end