octave-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Octave-bug-tracker] [bug #47571] Problem with umlaut in command line


From: anonymous
Subject: [Octave-bug-tracker] [bug #47571] Problem with umlaut in command line
Date: Mon, 04 Apr 2016 19:05:24 +0000
User-agent: Mozilla/5.0 (Android 5.0.1; Mobile; rv:45.0) Gecko/45.0 Firefox/45.0

Follow-up Comment #17, bug #47571 (project octave):

The lowercase ü is correctly interpreted as bytes 195 and 188 in that
sequence, according to UTF-8. To verify: bitand(195,31) * 64 + bitand(188,63)
== 252 == 0xFC == the Unicode character for ü. The UTF-8 stream for Latin-1
is of the form 110xxxxx 10yyyyyy. Discard the 110 and 10 to get xxxxxyyyyyy.
Longer byte sequences do similar calculations. This means Octave is internally
and implicitly doing UTF-8 normalization even on Windows -- JWE please correct
if wrong.

Not able to reproduce the "delete rest of word" action. Continuing. Probably
copy-pasting UTF-16 on Windows is being misinterpreted by Octave as UTF-8, and
excess chars are being executed as word processing commands. Need to test
more.

Martl, do you get "delete rest of word" only on Octave or on, say, Notepad and
other applications as well?



    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?47571>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]