diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2014-09-10 20:23:27 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2014-09-10 20:23:27 -0700 |
commit | 75c9240632d0f69d25390814b835523a23ebfb19 (patch) | |
tree | 07a7ad0289ae2632b94e199e56c46bc3358e27e1 /lib.c | |
parent | 063b5a8c138e68237e11bcdac2f5763243b9bfc7 (diff) | |
download | txr-75c9240632d0f69d25390814b835523a23ebfb19.tar.gz txr-75c9240632d0f69d25390814b835523a23ebfb19.tar.bz2 txr-75c9240632d0f69d25390814b835523a23ebfb19.zip |
* lib.c (compat_fixup): void return changed to int.
Returns minimum supported emulation.
* lib.h (compat_fixup): Declaration fixed.
* txr.c (compat): Replace hard-coded min version
by return value of compat_fixup.
Diffstat (limited to 'lib.c')
-rw-r--r-- | lib.c | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -6778,9 +6778,12 @@ void init(const wchar_t *pn, mem_t *(*oom)(mem_t *, size_t), gc_state(gc_save); } -void compat_fixup(int compat_ver) +int compat_fixup(int compat_ver) { - if (compat_ver <= 97) { + if (compat_ver < 97) + return 97; + + if (compat_ver == 97) { symbol_setname(type_error_s, lit("type_error")); symbol_setname(internal_error_s, lit("internal_error")); symbol_setname(numeric_error_s, lit("numeric_error")); @@ -6789,6 +6792,8 @@ void compat_fixup(int compat_ver) symbol_setname(file_error_s, lit("file_error")); symbol_setname(process_error_s, lit("process_error")); } + + return 0; } void dump(val obj, val out) |