'help $' now directs to the Symbols help page.
Change-Id: Id15913e6b90a5e7a4635a25c2c28733344710c8a
* Bug #13007 fixed - Compilation errors were not returned by jcompile.
+* Bug #13008 fixed - 'help $' now opens the 'Symbols' help page.
+
Xcos Bug Fixes
==============
key="symbols";
end
+ // Treat "$" apart because contrarily to the previous symbols, "$" is an existing variable in Scilab
+ if part(key,1)=="$" & (exists(key)==0 | length(key)==1) then
+ key="symbols";
+ end
+
global %helps
helpbrowser(%helps(:,1), key, getlanguage(), %f);