bug#72215: Compiler error building 3.0.10 on 32-bit platforms

2024-07-20 Thread Ludovic Courtès
Hi, The following compilation error occurs on i686-linux: --8<---cut here---start->8--- BOOTSTRAP(stage1) GUILEC ice-9/control.go wrote `language/cps/verify.go' BOOTSTRAP(stage1) GUILEC ice-9/copy-tree.go wrote `ice-9/copy-tree.go' BOOTSTRAP(stage1) GUILE

bug#72208: [PATCH] doc: tour: note the top-level modules ice-9, scheme, and srfi

2024-07-20 Thread Dr. Arne Babenhauserheide
Hi, Following my answer in the discussion (after checking the non-ice-9 prefixes), this may be a better representation of the modules Guile provides: From 6838e4da9712425e7e45805a73731bb399d90a86 Mon Sep 17 00:00:00 2001 From: Arne Babenhauserheide Date: Sat, 20 Jul 2024 15:03:15 +0200 Subject:

bug#72209: Texinfo: stexi->texi: Anchor label becomes empty

2024-07-20 Thread Bug reports for GUILE, GNU's Ubiquitous Extension Language
STEPS TO REPRODUCE 1. Start a Guile REPL 2. Run the following code:    #+begin_src scheme    (use-modules (texinfo serialize))    (stexi->texi '(anchor "some-label"))    #+end_src EXPECTED RESULT A string like this: "@anchor{some-label}" UNEXPECTED RESULT The label part is empty: "@anchor{

bug#72208: [PATCH] doc: tour: note the top-level modules ice-9, scheme, and srfi

2024-07-20 Thread Dr. Arne Babenhauserheide
Hi, the attached patch is a companion to the thread "The Guile junk drawer and a C plea" in guile-devel. Its goal is to ensure that newcomers learn early about the main module prefixes provided by Guile: (scheme ...), (srfi ...), and (ice-9 ...). From 929f5075be5d21c552e91931aca4a68fde348e21 Mon