bug#36601: Patch series for guile-2.9.2 on mingw-w64

2019-07-15 Thread Hannes Müller
The error regarding the wrong absolute path names is related to the prebuilt modulesprebuilt\64-bit-little-endian\ice-9\boot-9 .goprebuilt\32-bit-little-endian\ice-9\boot-9.go They have been built with system-file-name-convention set to posix. In fact on mingw-w64 this value is set to windows. I fo

bug#36677: [PATCH] Don't truncate backtraces

2019-07-15 Thread Robert Vollmert
* module/system/repl/debug.scm (print-frame): Print full object if width keyword is #f. * libguile/backtrace.c (display_backtrace_body): Call print-frames with #:width #f. --- This change was prompted by recent discussion on the Guix lists: https://lists.gnu.org/archive/html/guix-devel/2019-07/m

bug#36682: Error in Guile scripting examples

2019-07-15 Thread Hans-Werner Roitzsch
Hello GNU Team! I wish to report a bug in either Guile's documentation or Guile's code with regard to running scripts. There are some examples of that given in Guile's documentation at: https://www.gnu.org/software/guile/manual/html_node/Scripting-Examples.html#Scripting-Examples In the followi

bug#36682: Error in Guile scripting examples

2019-07-15 Thread Arne Babenhauserheide
Hello Hans-Werner Roitzsch, It looks like you’re mixing up two concepts: the fac creates a module and loads the fact which is not a module, so basically main and choose live in another namespace than fact (define-module starts a new namespace). And it seems that this is indeed a bug in the docume