<html>
  <head>

    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  </head>
  <body>
    <p>Hi all,</p>
    <p>Scilab can use unicode characters (at least some) as variable
      names.<br>
      However, this does not play well with Scinotes syntax highlighting
      in functions.<br>
      In particular, input/output arguments are no longer highlighted
      and local line number inside the function does no longer work as
      expected.<br>
      You can see the attached screenshot to better see what I mean.</p>
    <p>Here is a bunch of function definitions that shows the issue:</p>
    <blockquote>
      <address>function [Sum, Diff] = AddSubs(arga, argb)</address>
      <address>    Sum=arga+argb;</address>
      <address>    Diff=arga-argb;</address>
      <address>endfunction</address>
      <address><br>
        function [Sum, Diff] = AddSubs2(argα, argb)</address>
      <address>    Sum=argα+argb;</address>
      <address>    Diff=argα-argb;</address>
      <address>endfunction</address>
      <address><br>
        function [Sum, Δ] = AddSubs(arga, argb)</address>
      <address>    Sum=arga+argb;</address>
      <address>    Diff=arga-argb;</address>
      <address>endfunction</address>
    </blockquote>
    <p>Can anyone reproduce the issue?</p>
    <p>Cheers,</p>
    <p>Antoine<br>
    </p>
    <p><br>
    </p>
  </body>
</html>