diff options
Diffstat (limited to 'parser.c')
-rw-r--r-- | parser.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -741,7 +741,7 @@ static val read_file_common(val self, val stream, val error_stream, val compiled if (compiled && first) { val major = car(form); - if (lt(major, one) || gt(major, num_fast(6))) + if (neq(major, num_fast(6))) uw_throwf(error_s, lit("cannot load ~s: version number mismatch"), stream, nao); |