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
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:
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{
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