Re: [Rd] Why does NextMethod() pick up duplicate arguments in '...' if given positionally at top level?

2025-03-25 Thread Michael Chirico
Thanks Duncan! I filed [1]. I didn't have a clue how to fix it, so I figured, why not ask an LLM [2]. It got the solution quite wrong (unless I'm just not zen enough to understand its wisdom), but it _did_ focus my attention on the right place. I have a patch going through CI at [3] that fixes the

Re: [Rd] Patch for RJSONIO

2025-03-25 Thread Ben Bolker
Dirk points out via Jeroen Ooms that https://github.com/r-devel/r-svn-packages is a mirror of https://svn.r-project.org/R-packages/trunk/RJSONIO/ which is where the package really lives ... On Tue, Mar 25, 2025 at 8:10 PM Duncan Murdoch wrote: > > I think email to the maintainer is likely

Re: [Rd] Patch for RJSONIO

2025-03-25 Thread Duncan Murdoch
I think email to the maintainer is likely the only choice. The maintainer is "CRAN Team ". Duncan Murdoch On 2025-03-25 6:58 p.m., Ben Bolker wrote: Maybe https://github.com/duncantl/RJSONIO ? (That page also points to https://omegahat.org/RJSONIO, which is now defunct ...) On 3/25/25 18:5

Re: [Rd] Patch for RJSONIO

2025-03-25 Thread Ben Bolker
Maybe https://github.com/duncantl/RJSONIO ? (That page also points to https://omegahat.org/RJSONIO, which is now defunct ...) On 3/25/25 18:53, Dirk Eddelbuettel wrote: I can never remember where the canonical sources are for the effectively-CRAN maintained packages so I am dropping it here

[Rd] Patch for RJSONIO

2025-03-25 Thread Dirk Eddelbuettel
I can never remember where the canonical sources are for the effectively-CRAN maintained packages so I am dropping it here -- yesterday's update to RJSONIO does not build on anything older than r-devel. This patch helps, feel free to adjust as needed. Dirk diff -ru RJSONIO.orig/src/RJSON.c RJ

Re: [Rd] request for discussion on lonely doc patch suggestion

2025-03-25 Thread Deepayan Sarkar
I like kompare very much, but I think it's Linux only. https://apps.kde.org/kompare/ -Deepayan On Tue, 25 Mar 2025 at 01:01, J C Nash wrote: > For Linux users, meld is quite nice for side by side editing, though I've > never tried using it for > display. Just checking now suggests it isn't obv

Re: [Rd] request for discussion on lonely doc patch suggestion

2025-03-25 Thread Serguei Sokol via R-devel
Le 24/03/2025 à 20:28, J C Nash a écrit : For Linux users, meld is quite nice for side by side editing, though I've never tried using it for display. Just checking now suggests it isn't obvious how to "print" side by side display. I've made meld easier for my own use by creating an icon in Dou

Re: [Rd] request for discussion on lonely doc patch suggestion

2025-03-25 Thread Duncan Murdoch
Thanks. When I went looking for a web page about tkdiff, I found this one comparing multiple diff tools: https://www.tecmint.com/best-linux-file-diff-tools-comparison/ It says it's for Linux, but they may be available on other platforms too. For example, tkdiff is based on TCL/TK, so it is

Re: [Rd] Why does NextMethod() pick up duplicate arguments in '...' if given positionally at top level?

2025-03-25 Thread Duncan Murdoch
I don't think there's any valid reason for this behaviour, i.e. it's a bug. For those who haven't read closely, the bug is that in the `foo(c)` call, within foo.default() the value of `c` is bound to both x and to the first element of ... . The 2012 thread you link to started with a slightly d