diff options
author | Andy Wingo <wingo@pobox.com> | 2011-02-11 15:21:58 +0100 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2011-02-11 15:21:58 +0100 |
commit | 9179e8a5ff00eeb7d42b66dcdb038a35fc54d5fc (patch) | |
tree | 90751fd212957acbf758defa9cfa3a89caf4ba30 /libguile/throw.c | |
parent | e0c70a8b06db2f6d721556c23280471825c3830a (diff) | |
download | guile-9179e8a5ff00eeb7d42b66dcdb038a35fc54d5fc.tar.gz |
pre-boot lookup of print-exception works
* libguile/backtrace.c (scm_print_exception): Use scm_module_variable to
look up print-exception so that it works before boot-9 is loaded.
* libguile/throw.c (CACHE_VAR): Tweak to use scm_from_latin1_symbol.
Diffstat (limited to 'libguile/throw.c')
-rw-r--r-- | libguile/throw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/throw.c b/libguile/throw.c index 7b2a98bd5..94783e002 100644 --- a/libguile/throw.c +++ b/libguile/throw.c @@ -58,7 +58,7 @@ if (scm_is_false (var)) \ { \ var = scm_module_variable (scm_the_root_module (), \ - scm_from_locale_symbol (name)); \ + scm_from_latin1_symbol (name)); \ if (scm_is_false (var)) \ abort (); \ } |