Hi,
Today I encountered an issue with Guix's user interface. I was trying to load a Scheme file defining a development environment with `guix environment --ad-hoc --load=file.scm`, but Guix kept telling me that the file did not exist even though I could swear it did:

> $ head -n 1 development-environment.scm
> (use-modules (gnu packages)
> $ guix environment --ad-hoc --load=development-environment.scm
> guix environment: error: failed to load 'development-environment.scm': No such file or directory

After pulling my hair out for a while and then turning to `strace` I figured out that it was not actually that the file `development-environment.scm` did not exist, the issue was that the Scheme code in that file tried to load a file that did not exist.

I set up a couple of different test cases to see if all errors were reported equally and to understand the issue better. Running a file that contains a syntax error indicates that there is an error in the file itself

> $ guix environment --ad-hoc --load=syntax-error.scm
> syntax-error.scm:2:1: missing closing parenthesis


The same goes for when the code in the file being run throws an exception:

> $ guix environment --ad-hoc --load=throw-exception.scm
> guix environment: error: failed to load 'throw-exception.scm':
> throw-exception.scm:1:0: banana


But when the code in turn tries to load another file which does not exist it is reported as if the file itself is missing:

> $ guix environment --ad-hoc --load=load-non-existing-file.scm
> guix environment: error: failed to load 'load-non-existing-file.scm': No such file or directory


I was able to find the source of the error message in `guix/ui.scm:378` and patched it to output the following message that makes more sense in this failure case:

> $ ./pre-inst-env guix environment --ad-hoc --load=load-non-existing-file.scm
> guix environment: error: failed to evaluate 'load-non-existing-file.scm', it raised the error: No such file or directory


So here comes my questions:

1. Why is the file and line number not reported when the user provided scheme file fails to load another file?
2. Is it possible to modify guix so that it is?
3. If not, is the code path that I patched also used for other failures making the modification I demonstrated above a bad idea?
4. If so, is there a better way?

I have attached the three small Scheme source code files used in the above examples.