<html>
  <head>

    <meta http-equiv="content-type" content="text/html; charset=utf-8">
  </head>
  <body text="#000000" bgcolor="#FFFFFF">
    <font face="Arial">Hello,<br>
      <br>
      The warning message about the vector^scalar operation yielded in
      Scilab 5.5<br>
      has been removed from Scilab 6.0, as if this operation would
      become again allowed instead of becoming actually forbidden:<br>
      <br>
      Scilab 5:<br>
    </font><br>
    <small><font face="Courier New">-->x = 1:3<br>
         x  =<br>
            1.    2.    3.  <br>
         <br>
        -->x^2<br>
            !       <br>
        Warning: Syntax "vector ^ scalar" is obsolete. It will be
        removed in Scilab 6.0.<br>
          Use "vector .^ scalar" instead.<br>
         ans  =<br>
            1.    4.    9.  </font><br>
    </small><font face="Arial"><br>
      Scilab 6.0.0-b2:<br>
      <small><font face="Courier New">--> warning("on")<br>
          <br>
          --> x = 1:3<br>
           x  = <br>
             1.   2.   3.<br>
          <br>
          --> x^2<br>
           ans  =<br>
             1.   4.   9.<br>
        </font></small><br>
      Is it on purpose? Is this shortcut restored?<br>
      <br>
    </font>
  </body>
</html>