diff options
author | pmarecha | 2010-06-24 08:23:33 +0000 |
---|---|---|
committer | pmarecha | 2010-06-24 08:23:33 +0000 |
commit | 9b69c20b240428baee4973fee41fa7f9e1cd006c (patch) | |
tree | 89385bbafc33c3d54c866d9220037f85b5151cbe | |
parent | 8042ebfd285164dd6b1b613e539b02d0f8485fe2 (diff) | |
download | scilab2c-9b69c20b240428baee4973fee41fa7f9e1cd006c.tar.gz scilab2c-9b69c20b240428baee4973fee41fa7f9e1cd006c.tar.bz2 scilab2c-9b69c20b240428baee4973fee41fa7f9e1cd006c.zip |
Fix help load
-rw-r--r-- | scilab2c/etc/scilab2c.start | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scilab2c/etc/scilab2c.start b/scilab2c/etc/scilab2c.start index 620f5fe9..8e77e350 100644 --- a/scilab2c/etc/scilab2c.start +++ b/scilab2c/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 |