http://bugzilla.scilab.org/16644
Interactive test:
--> input("Message: ")
Message: "100" euros
x="100" euros
^~~~~^
Error: syntax error, unexpected identifier, expecting end of file
Message:
ans =
[]
Change-Id: I674e52444efcd54347c1028570c5f070dd52adad
* [#16557](https://bugzilla.scilab.org/16557): `macr2tree` + `tree2code` translated `e={2}` into `"e=1"` and `e={2,"ab"}` into `"e=[2,"ab"]"`.
* [#16559](https://bugzilla.scilab.org/16553): `isempty(A)` was true for sparse matrix of dimension 2^16 or larger.
* [#16623](https://bugzilla.scilab.org/16623): `rand(2,2,2)^2` yielded a wrong result instead of trying to call the `%s_p_s` overload for input hypermatrices.
+* [#16644](https://bugzilla.scilab.org/16644): `input("message:")` yielded a wrong error message about `mprintf` in case of non-interpretable input.
### Bugs fixed in 6.1.0:
if ierr == 0 then
break;
end
- mprintf(lasterror());
+ mprintf("%s\n",lasterror());
mprintf("\n");
end
end