Re: Deprecated current-milliseconds

2023-12-08 Thread Mario Domenech Goulart
Hi, On Thu, 7 Dec 2023 13:21:12 +0200 Lassi Kortela wrote: >> chicken time current-process-milliseconds > > Thanks. Here's a grep of current-milliseconds in > eggs-5-latest. Anybody got time to patch some? > > dbus/0.97/tests/run.scm > gochan/5.2.10/chibi-compat.scm >

Re: Deprecated current-milliseconds

2023-12-07 Thread Christian Himpe
> On 7. Dec 2023, at 13:20, Peter Bex wrote: > > On Thu, Dec 07, 2023 at 12:48:34PM +0100, Vasilij Schneidermann wrote: >> Hello, >> >> the openssl egg does no longer produce the warning in version 2.2.5 by >> either importing the new or old identifier, depending on whichever is >>

Re: Deprecated current-milliseconds

2023-12-07 Thread Peter Bex
On Thu, Dec 07, 2023 at 12:48:34PM +0100, Vasilij Schneidermann wrote: > Hello, > > the openssl egg does no longer produce the warning in version 2.2.5 by either > importing the new or old identifier, depending on whichever is available. > Feel free to use that approach in the other egg and

Re: Deprecated current-milliseconds

2023-12-07 Thread Vasilij Schneidermann
Hello, the openssl egg does no longer produce the warning in version 2.2.5 by either importing the new or old identifier, depending on whichever is available. Feel free to use that approach in the other egg and consider that it may skew the grep results. Vasilij On December 7, 2023 12:21:12

Re: Deprecated current-milliseconds

2023-12-07 Thread Lassi Kortela
chicken time current-process-milliseconds Thanks. Here's a grep of current-milliseconds in eggs-5-latest. Anybody got time to patch some? dbus/0.97/tests/run.scm gochan/5.2.10/chibi-compat.scm gochan/5.2.10/chicken-module5.scm gochan/5.2.10/gochan-record-printer.scm gochan/5.2.10/gochan.scm

Re: Deprecated current-milliseconds

2023-12-07 Thread felix . winkelmann
> Would it be possible to mark deprecations with alternatives/documentation > to point users in the new direction? Yes, next time, such a warning should mention any replacements. There is also a DEPRECATED file in the sources that lists recent deprecations. Thanks for the suggestion. felix

Re: Deprecated current-milliseconds

2023-12-07 Thread Kristian Lein-Mathisen
I've seen this too, and I wish the deprecation warning mentioned this alternative. I think in this particular example, it's just a rename - bu I'm guessing. Would it be possible to mark deprecations with alternatives/documentation to point users in the new direction? K. On Wed, Dec 6, 2023,

Re: Deprecated current-milliseconds

2023-12-06 Thread Kon Lovett
> On Dec 6, 2023, at 1:58 PM, Lassi Kortela wrote: > > Hi, > > Version 5.3 csc gives the warning: > > Use of deprecated identifier `current-milliseconds' from module > `chicken.time'. > > for (at least) these modules: > > * scheme.time (r7rs) > * sendfile > * srfi-18 > > Is there a

Deprecated current-milliseconds

2023-12-06 Thread Lassi Kortela
Hi, Version 5.3 csc gives the warning: Use of deprecated identifier `current-milliseconds' from module `chicken.time'. for (at least) these modules: * scheme.time (r7rs) * sendfile * srfi-18 Is there a drop-in replacement for this procedure? -l