help-octave
[Top][All Lists]
Advanced

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

Re: Trivial Question


From: Michael Goffioul
Subject: Re: Trivial Question
Date: Wed, 7 Aug 2013 08:20:35 -0400

On Wed, Aug 7, 2013 at 3:56 AM, Damian Harty <address@hidden> wrote:

warning: ft_render: skipping missing glyph for character '

 

Is it something known, is it likely to return? Who knows. If it does come back I will note what else is running at the time.

 

The warning means that the default font do not have a particular character.

That may happen if you e.g. switch you keyboard to non US layout and type something

that does look as ASCII while it is really not. E.g. try cut and paste:

plot (rand(3))
xlabel("СРТ Violation")

 

I kinda guessed it was looking for a character that wasn’t there, but wasn’t sure why that would go away without changing the code. It also wasn’t that clear to me to which character it was objecting, as it seemed to object to pretty much all of them while just displaying a single quote.

 

I pasted the text (after doing an octal dump to see that “CPT” was a six byte string I didn’t recognize at all, rendered by od –c as 320 241 320 240 320 242) and when I ran it from the command line Octave drew ??? in the command window and ??? on the plot. When I put it into a command file it just produced nothing on the plot.


Those characters are actually Cyrillic ones. In UTF-8, they're encoded as d0a1 d0a0 and d0a2, but their printed representation looks like the Latin characters C P and T. How confusing... ;)

Michael.


reply via email to

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