diff options
author | Andy Wingo <wingo@pobox.com> | 2011-05-13 15:45:43 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2011-05-13 15:45:43 +0200 |
commit | 86fb1eb631d455aec634aa475a14d2c88052752c (patch) | |
tree | 98936072396a05aa1e4a6d177452f6d5e65a62f5 /libguile/load.c | |
parent | fc7bd367ab4b5027a7f80686b1e229c62e43c90b (diff) | |
parent | 2002f1f84797c2c46d0634eabd5ac5fd61e13d73 (diff) | |
download | guile-86fb1eb631d455aec634aa475a14d2c88052752c.tar.gz |
merge strictness branch from 2.0
Diffstat (limited to 'libguile/load.c')
-rw-r--r-- | libguile/load.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/load.c b/libguile/load.c index b0137a11b..fa19a2a66 100644 --- a/libguile/load.c +++ b/libguile/load.c @@ -116,7 +116,7 @@ SCM_DEFINE (scm_primitive_load, "primitive-load", 1, 0, 0, /* Lookup and use the current reader to read the next expression. */ reader = scm_fluid_ref (the_reader); - if (reader == SCM_BOOL_F) + if (scm_is_false (reader)) form = scm_read (port); else form = scm_call_1 (reader, port); |