* [#15818](http://bugzilla.scilab.org/show_bug.cgi?id=15818): `polarplot()` example could not be subplotted. `polarplot`'s demo did not display 'View code' and too often prompted the user.
* [#15847](http://bugzilla.scilab.org/show_bug.cgi?id=15847): Scilab crashed at startup.
* [#15854](http://bugzilla.scilab.org/show_bug.cgi?id=15854): `horner(1:$,4)` yielded an error. Extractions from `cblock` tables were impacted.
+* [#15740](http://bugzilla.scilab.org/show_bug.cgi?id=15740): now `(%s == %z) == %f` and `(%s ~= %z) == %t`
### Bugs fixed in 6.0.1:
SinglePoly** pSPL = _pL->get();
SinglePoly** pSPR = _pR->get();
+ if (_pL->getVariableName() != _pR->getVariableName())
+ {
+ return new Bool(false);
+ }
+
if (_pR->isScalar())
{
pbOut = new Bool(_pL->getDims(), _pL->getDimsArray());
SinglePoly** pSPL = _pL->get();
SinglePoly** pSPR = _pR->get();
+ if (_pL->getVariableName() != _pR->getVariableName())
+ {
+ return new Bool(true);
+ }
+
if (_pR->isScalar())
{
pbOut = new Bool(_pL->getDims(), _pL->getDimsArray());
--- /dev/null
+// =============================================================================
+// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
+// Copyright (C) 2018 - Stéphane MOTTELET
+//
+// This file is distributed under the same license as the Scilab package.
+// =============================================================================
+//
+// <-- CLI SHELL MODE -->
+// <-- NO CHECK REF -->
+//
+// <-- Non-regression test for bug 15740 -->
+//
+// <-- Bugzilla URL -->
+// http://bugzilla.scilab.org/15740
+//
+// <-- Short Description -->
+// %s == %z now returns %T and %s ~= %z returns %F (Regressions)
+
+assert_checkfalse(%s == %z)
+assert_checktrue(%s ~= %z)
\ No newline at end of file