bug#39162: [PATCH] Fix file lookup of modules with a dot in their name.

2020-03-21 Thread Ludovic Courtès
Hi! Jan Nieuwenhuizen skribis: > Much to my surprise, Guile (v2.2 and 3.0 alike) fail to load a module > that has a dot in its base name. Directory names with dots > (e.g. ice.10/boot-10.scm => (ice.10 boot-10)) are fine. [...] > - /* If FILENAME has an extension, don't try to add

bug#39162: [PATCH] Fix file lookup of modules with a dot in their name.

2020-01-17 Thread Jan Nieuwenhuizen
Hello Guile! Much to my surprise, Guile (v2.2 and 3.0 alike) fail to load a module that has a dot in its base name. Directory names with dots (e.g. ice.10/boot-10.scm => (ice.10 boot-10)) are fine. The attached patch now makes this work: --8<---cut