Re: Quiet re-imports

2021-04-06 Thread Diego
> Diego's issue is that there's no way to make csi to not import scheme by > default. So adding a flag for that would solve the issue. More specifically, the issue is that it imports scheme, chicken.base, and chicken.syntax by default. If there was a way to entirely disable the default imports

Re: Quiet re-imports

2021-04-06 Thread megane
felix.winkelm...@bevuta.com writes: >> Am Wed, 24 Mar 2021 23:51:13 + >> schrieb Diego : >> ... >> >> Hm. Out of principle I tend to rather spam the user with warnings (at >> least by default) and contemplate how to circumvent the issue in the >> first place. > > True, but in some cases it

Re: Quiet re-imports

2021-03-30 Thread felix . winkelmann
> Am Wed, 24 Mar 2021 23:51:13 + > schrieb Diego : > > > I think it would be nice to have a flag/parameter to quiet > > "re-importing already imported identifier/syntax" warnings. These > > seem rather noisy, and in many cases the user is probably aware of > > potential collisions (as in

Re: Quiet re-imports

2021-03-30 Thread Jörg F. Wittenberger
Am Wed, 24 Mar 2021 23:51:13 + schrieb Diego : > I think it would be nice to have a flag/parameter to quiet > "re-importing already imported identifier/syntax" warnings. These > seem rather noisy, and in many cases the user is probably aware of > potential collisions (as in (import r7rs), for

Quiet re-imports

2021-03-24 Thread Diego
I think it would be nice to have a flag/parameter to quiet "re-importing already imported identifier/syntax" warnings. These seem rather noisy, and in many cases the user is probably aware of potential collisions (as in (import r7rs), for example). In the attached patch to modules.scm, I've