diff options
author | Andy Wingo <wingo@pobox.com> | 2010-11-18 22:30:27 +0100 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2010-11-19 15:22:43 +0100 |
commit | 3d27ef4bd312750f8edca81f09644eab21a3d8e0 (patch) | |
tree | 74f9b5a8c6419e5b2c14bd7df069e7b8c621fa62 /libguile/debug.c | |
parent | f0c56cadfda6f8e9691d5e12cbd1778f36bfde2a (diff) | |
download | guile-3d27ef4bd312750f8edca81f09644eab21a3d8e0.tar.gz |
fix a number of assumptions that a pointer could fit into a long
* libguile/debug.c:
* libguile/eval.c:
* libguile/frames.c:
* libguile/objcodes.c:
* libguile/print.c:
* libguile/programs.c:
* libguile/read.c:
* libguile/struct.c:
* libguile/vm.c: Fix a number of instances in which we assumed we could
fit a pointer into a long.
Diffstat (limited to 'libguile/debug.c')
-rw-r--r-- | libguile/debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/debug.c b/libguile/debug.c index dd65de45c..e059a3135 100644 --- a/libguile/debug.c +++ b/libguile/debug.c @@ -82,7 +82,7 @@ scm_t_option scm_debug_opts[] = { for anyone!) or a whoppin' 1280 KB on 64-bit arches. */ { SCM_OPTION_INTEGER, "stack", 160000, "Stack size limit (measured in words; 0 = no check)." }, - { SCM_OPTION_SCM, "show-file-name", (unsigned long)SCM_BOOL_T, + { SCM_OPTION_SCM, "show-file-name", (scm_t_bits)SCM_BOOL_T, "Show file names and line numbers " "in backtraces when not `#f'. A value of `base' " "displays only base names, while `#t' displays full names."}, |