Skip Menu |

This queue is for tickets about the Curses CPAN distribution.

Report information
The Basics
Id: 132283
Status: open
Priority: 0/
Queue: Curses

People
Owner: Nobody in particular
Requestors: ronerycoder [...] gluino.name
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: Problem with printing wide characters via printw
Date: Thu, 2 Apr 2020 04:44:10 +0200
To: bug-curses [...] rt.cpan.org
From: ronerycoder <ronerycoder [...] gluino.name>
Good day, I have been examining a problem with printing of characters 0x80-0xFF for a few days now, in * /perl-Curses-1.36-9.fc30.x86_64/ * /perl-Curses-1.36-11.fc31.x86_64/ I tried to ask on Stack Overflow, but that's becoming nonproductive at this point. Maybe you can take a look, there is test code. https://stackoverflow.com/questions/60971499/are-there-one-or-two-solid-bugs-in-the-curses-shim-for-perl With best regards, -- David // //
On 2020-04-01 19:59:26, ronerycoder@gluino.name wrote: Show quoted text
> I tried to ask on Stack Overflow, but that's becoming nonproductive at > this point. > > Maybe you can take a look, there is test code. > > https://stackoverflow.com/questions/60971499/are-there-one-or-two- > solid-bugs-in-the-curses-shim-for-perl
It looks like stackoverflow contains the solution now.
Dne Čt 02.dub.2020 12:56:38, ETHER napsal(a): Show quoted text
> On 2020-04-01 19:59:26, ronerycoder@gluino.name wrote: >
> > I tried to ask on Stack Overflow, but that's becoming nonproductive at > > this point. > > > > Maybe you can take a look, there is test code. > > > > https://stackoverflow.com/questions/60971499/are-there-one-or-two- > > solid-bugs-in-the-curses-shim-for-perl
> > It looks like stackoverflow contains the solution now. >
Do you mean replacing Curses printw() with: no warnings qw( redefine ); sub printw { addstring(sprintf shift, @_) } That only shows there is a bug in Curses. It reads now: sub printw { addstr(sprintf shift, @_) }
Subject: Re: [rt.cpan.org #132283] Problem with printing wide characters via printw
Date: 30 Sep 2020 03:25:03 +0000
To: bug-Curses [...] rt.cpan.org
From: Bryan Henderson <bryanh [...] giraffe-data.com>
Show quoted text
> That only shows there is a bug in Curses.
Thanks for pointing that out. I was unware 'printw' was a Curses function; all I saw was suspicion of 'getchar' followed by exoneration of 'getchar'. I will change 'addstr' to 'addstring'. -- Bryan Henderson San Jose, California