Re: [Rd] Problem with accessibility in R 4.2.0 and 4.2.1.

2022-12-20 Thread Tomas Kalibera
Dear Andrew, Jonathan, I had a closer look and tried to improve accessibility in Rgui, please see below. I would be grateful for feedback. Rgui supports three cursor types, which can be selected via Edit/GUI preferences/Cursor blink. The default is "partial", but for screen readers, please

Re: [Rd] Problem with accessibility in R 4.2.0 and 4.2.1.

2022-12-20 Thread Tomas Kalibera
On 9/22/22 23:15, Andrew Hart via R-devel wrote: On 22/09/2022 16:42, Toby Hocking wrote: Another option is to use https://emacspeak.sourceforge.net/ (version of emacs editor/ide which can speak letters/words/lines -- has a blind maintainer) with http

Re: [Rd] F77_CALL(dgetrs) C++ call in R-devel

2022-12-20 Thread Dirk Eddelbuettel
On 20 December 2022 at 12:33, Lars Relund wrote: | In my package, I have the method: | | /** Solve equations transpose(P)w = r. */ | int LASolveT(MatSimple &P, MatSimple &w, const | MatSimple &r) { | int rows = P.rows; | int nrhs = 1; | int lda = rows; | i

[Rd] F77_CALL(dgetrs) C++ call in R-devel

2022-12-20 Thread Lars Relund
In my package, I have the method: /** Solve equations transpose(P)w = r. */ int LASolveT(MatSimple &P, MatSimple &w, const MatSimple &r) { int rows = P.rows; int nrhs = 1; int lda = rows; int ldb = rows; int info = -1; MatSimple ipivot(1,rows