bug#33340: named match-let doesn't work

2018-11-11 Thread Alex Kost
Ernesto Gabriel (2018-11-11 00:44 -0300) wrote: > match-let works as advertised, but a named match-let gives errors I think this is the same as: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=22925 Sorry, I am just reporting about the repeated bug, I don't know what should be done about it :-) -

bug#25530: [PATCH] Fix typo in site packages documentation

2017-01-25 Thread Alex Kost
Georgi Kirilov (2017-01-25 16:04 +0200) wrote: > * doc/ref/scheme-using.texi (Installing Site Packages): Fix typo > --- > doc/ref/scheme-using.texi | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/doc/ref/scheme-using.texi b/doc/ref/scheme-using.texi > index b7efcb4a9..b1f

bug#23943: Guile loads "init.scm" from the current directory

2016-07-12 Thread Alex Kost
Andy Wingo (2016-07-11 19:07 +0300) wrote: > On Mon 11 Jul 2016 09:44, Alex Kost writes: > >> cd /tmp >> echo foo > init.scm >> GUILE_LOAD_COMPILED_PATH= GUILE_LOAD_PATH= guile -q >> >> And it fails with this error: >> >> guile: uncaught throw

bug#23941: load-path bug?

2016-07-11 Thread Alex Kost
Tobin Harding (2016-07-11 02:12 +0300) wrote: > Guile does not appear to search %load-path when locating a file to load. > > From the documentation: > https://www.gnu.org/software/guile/manual/html_node/Load-Paths.html Right, and this page mentions 'load-from-path' :-) > 6.17.7 Load Paths > ...

bug#23754: Guile doesn't show correct character while interpreting script file

2016-07-11 Thread Alex Kost
Ws Hu (2016-06-12 12:17 +0300) wrote: > Hi, > > guile replaces non-ascii unicodes with question marks while > interpreting script file: > > $ cat test.scm > (display "蛤") > $ file test.scm > test.scm: UTF-8 Unicode text > $ guile test.scm > ? Hi, putting (setlocale LC_ALL

bug#23739: Unexpected behavior of 'add-to-load-path'.

2016-07-11 Thread Alex Kost
Mathieu Lirzin (2016-06-10 18:19 +0300) wrote: > writes: [...] >> I mean: the double entry "foo" for %load-path in your first result >> above doesn't happen for me. Could that be a typo? > > My report was partially correct indeed. There are two added entries in > ‘%load-path’ with Guile from Deb

bug#23943: Guile loads "init.scm" from the current directory

2016-07-11 Thread Alex Kost
Hello. If you start guile from a directory that contains "init.scm" file, it will be loaded. Try this recipe (GUILE_..._PATH are unset for a pure experiment): cd /tmp echo foo > init.scm GUILE_LOAD_COMPILED_PATH= GUILE_LOAD_PATH= guile -q And it fails with this error: guile: uncaught throw t

bug#20812: [PATCH] Fix typo in the man page.

2015-06-14 Thread Alex Kost
Hello, I've noticed that commit 900a6f8 mistakenly reverted the change in the manual introduced by commit 6f06e8d. >From 15b70ea013cd9886320b22191aa5527f866f5959 Mon Sep 17 00:00:00 2001 From: Alex Kost Date: Sun, 14 Jun 2015 19:09:34 +0300 Subject: [PATCH] Fix typo in the man page

bug#20797: [PATCH] Fix typo in manual.

2015-06-12 Thread Alex Kost
Hello, I've noticed a typo. Please let me know if the attached patch is not appropriate. >From f7aabb38c24b40bec4be6af13ad387d4ed0c20ca Mon Sep 17 00:00:00 2001 From: Alex Kost Date: Fri, 12 Jun 2015 19:30:17 +0300 Subject: [PATCH] Fix typo in manual. * doc/ref/api-modules.texi (Usi

bug#18127: add-to-load-path adds a path twice

2014-07-28 Thread Alex Kost
Hello, I noticed that ‘add-to-load-path’ adds a path 2 times when it is called in Guile REPL. taylanub from #guile explained that it may happen because in the REPL the compilation and execution happen in the same session and “‘add-to-load-path’ takes care of modifying the path both at compile-time