Re: Cross-compiling Guile 3.0.4

2020-12-21 Thread Ivan Sokolov
> The #f passed to ‘compile-and-load’ suggests that ‘boot.el’ was not > found in the search path. Could it be that it’s been stripped from your > source? No, it's here and compiles without errors for native target, but I think now I get it. Somehow it does not find boot.el from sources, but fi

Re: vector-last / vector-ref with negative indices?

2020-12-21 Thread Aleix Conchillo Flaqué
Thank you for the replies. I ended up sending a patch to add support for (vector-last) since I found it useful. https://lists.gnu.org/archive/html/guile-devel/2020-12/msg9.html Aleix On Sat, Dec 19, 2020 at 10:58 PM Aleix Conchillo Flaqué wrote: > > Hi, > > This month I'm trying to go throu

Re: Unbound variable warning/exception

2020-12-21 Thread Jérémy Korwin-Zmijowski
Hello ! Looking in the all of core Guile could save time! I can see already an emacs geiser trick to add it automatically haha. Auto-completion + auto-use-module = Awesome! Cheers, Jérémy Le 21 décembre 2020 00:11:38 GMT+01:00, Christopher Lam a écrit : >The exception printer would be a good

Re: Writing a procedure in different style

2020-12-21 Thread tomas
On Sun, Dec 20, 2020 at 06:57:34PM +0100, Zelphir Kaltstahl wrote: > Hello Tomas! > > I think you are right about it only being down one stack frame down. The > checks are performed on what contains the next thing which is recurred on. Nice explanation :) > For a moment I thought "But isn't the

Re: Writing a procedure in different style

2020-12-21 Thread Zelphir Kaltstahl
Hey Tomas, On 12/21/20 1:31 PM, to...@tuxteam.de wrote: > On Sun, Dec 20, 2020 at 06:57:34PM +0100, Zelphir Kaltstahl wrote: >> Hello Tomas! >> >> I think you are right about it only being down one stack frame down. The >> checks are performed on what contains the next thing which is recurred on.