bug#66531: [PATCH] ftw: Fix getuid-or-false, getgid-or-false macros.

2023-10-13 Thread Tomas Volf
Both macros were missing a quote for the procedure call, causing the actual return value to be compiled into the ftw.go, instead of the procedure call. Snippet from disassembly of ftw.go does confirm that: 55(make-immediate 2 3990) ;; 997at ice-9/ftw.scm:319:46 56

bug#66531: [PATCH] ftw: Fix getuid-or-false, getgid-or-false macros.

2023-10-13 Thread Bug reports for GUILE, GNU's Ubiquitous Extension Language
> Both macros were missing a quote for the procedure call, causing the > actual return value to be compiled into the ftw.go, instead of the >procedure call.  Snippet from disassembly of ftw.go does confirm that: Looks good to me. If you don't have commit approval, I can take the action to commit

bug#66531: [PATCH] ftw: Fix getuid-or-false, getgid-or-false macros.

2023-10-13 Thread Tomas Volf
On 2023-10-13 17:30:06 +, Mike Gran wrote: > > Both macros were missing a quote for the procedure call, causing the > > actual return value to be compiled into the ftw.go, instead of the > >procedure call.  Snippet from disassembly of ftw.go does confirm that: > > Looks good to me. > > If you