Re: absolute pathname a.k.a. realpath

2022-10-24 Thread John Cowan
Thanks! On Mon, Oct 24, 2022 at 5:37 PM Evan Hanson wrote: (Although technically I don't think realpath(3) is available directly, > you can use `read-symbolic-link' with the "canonicalize" argument set.) > I was actually thinking of SRFI 170, which is a Posix library and does have real-path.

Re: absolute pathname a.k.a. realpath

2022-10-24 Thread Evan Hanson
On 2022-10-24 14:14, John Cowan wrote: > As designed, the pathname module does not access the filesystem (except > that it knows whether the default is Posix or Windows), and I'd like to > keep it that way. Realpath is available in the Posix module. I'd tend to agree with John. Path resolution

Re: absolute pathname a.k.a. realpath

2022-10-24 Thread John Cowan
As designed, the pathname module does not access the filesystem (except that it knows whether the default is Posix or Windows), and I'd like to keep it that way. Realpath is available in the Posix module. On Mon, Oct 24, 2022 at 1:12 PM Lassi Kortela wrote: > Note: The Unix realpath() function

Re: absolute pathname a.k.a. realpath

2022-10-24 Thread Lassi Kortela
Note: The Unix realpath() function returns an abspath with all symlinks resolved. Hence all realpaths are abspaths, but not all abspaths are realpaths. It would be nice to reflect this terminology in Scheme.

Re: [PATCH] get rid of obscure mac resource file

2022-10-24 Thread Peter Bex
On Fri, Oct 21, 2022 at 03:58:42PM +0200, felix.winkelm...@bevuta.com wrote: > This stuff is obscure and, as described in #1774, packaging/"deploying" > applications is something > that should be left to application developers. Agreed, patch pushed. Cheers, Peter signature.asc Description:

[PATCH] fix for double-quoting behaviour in egg-compilation

2022-10-24 Thread felix . winkelmann
As reported by Kon, our previous "fix" for shell argument quoting exposed another bug, this is an attempt to improve on that. felix From b4b2561f4bdd13ce92fee6a877846f9ad521bde4 Mon Sep 17 00:00:00 2001 From: felix Date: Mon, 24 Oct 2022 17:21:37 +0200 Subject: [PATCH] Fix double-quoting bug in

Re: [PATCH] handling of prelude/postlude forms

2022-10-24 Thread Peter Bex
On Mon, Oct 24, 2022 at 11:23:09AM +0200, felix.winkelm...@bevuta.com wrote: > The attached patch addresses the broken semantics of -prelude/-postlude > in the compiler driver, as reported by sjamaan. Thanks, pushed! I wonder how this got so broken. Cheers, Peter signature.asc Description:

[PATCH] handling of prelude/postlude forms

2022-10-24 Thread felix . winkelmann
The attached patch addresses the broken semantics of -prelude/-postlude in the compiler driver, as reported by sjamaan. felix From 8a457027563789e6dbedbc1c2045b66d37c36800 Mon Sep 17 00:00:00 2001 From: felix Date: Mon, 24 Oct 2022 11:21:54 +0200 Subject: [PATCH] fix broken handling of