Eli Zaretskii <e...@gnu.org> skribis: >> From: l...@gnu.org (Ludovic Courtès) >> Cc: guile-devel@gnu.org >> Date: Tue, 01 Jul 2014 11:36:32 +0200 >> >> Eli Zaretskii <e...@gnu.org> skribis: >> >> > In Emacs, some of the file and directory names recorded during the >> > build and startup come from argv[0] and from prefix-relative directory >> > names computed by configure. Is there something similar in Guile, and >> > if so, where do I find that? >> >> The default %load-path uses absolute directory names based on what >> ./configure computed. > > Thanks. Where do I find the code which does that? I'd like to review > it with the issue at hand in mind.
You can look at load.c, and in particular scm_init_load_path. Ludo’.