summaryrefslogtreecommitdiffstats
path: root/lib.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2014-09-10 20:23:27 -0700
committerKaz Kylheku <kaz@kylheku.com>2014-09-10 20:23:27 -0700
commit75c9240632d0f69d25390814b835523a23ebfb19 (patch)
tree07a7ad0289ae2632b94e199e56c46bc3358e27e1 /lib.c
parent063b5a8c138e68237e11bcdac2f5763243b9bfc7 (diff)
downloadtxr-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.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/lib.c b/lib.c
index cb779d8d..c8298468 100644
--- a/lib.c
+++ b/lib.c
@@ -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)