diff options
author | Andy Wingo <wingo@pobox.com> | 2009-08-15 14:11:51 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2009-08-20 18:52:49 +0200 |
commit | d94be25f72d217a484b4f4c9b742c610fc9e501c (patch) | |
tree | 79b0c5c87aba8cd5ca2eed087361874e7f435469 /libguile/_scm.h | |
parent | 609edba7eaa2bb30df90a09541a48d97ab4a3bf8 (diff) | |
download | guile-d94be25f72d217a484b4f4c9b742c610fc9e501c.tar.gz |
remove dead weight from vm-i-system.c
* libguile/vm-i-system.c: Remove mark, list-mark, cons-mark,
vector-mark, and list-break, as they are no longer used.
(call, goto/args, mv-call): Remove bits about trampolines, which was
slower, and VM continuations, which are not used (we use Guile's
continuations as the applicable objects).
Renumber ops.
* libguile/_scm.h (SCM_OBJCODE_MINOR_VERSION): Bump.
Diffstat (limited to 'libguile/_scm.h')
-rw-r--r-- | libguile/_scm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/_scm.h b/libguile/_scm.h index 627c51e03..7e367392a 100644 --- a/libguile/_scm.h +++ b/libguile/_scm.h @@ -172,7 +172,7 @@ /* Major and minor versions must be single characters. */ #define SCM_OBJCODE_MAJOR_VERSION 0 -#define SCM_OBJCODE_MINOR_VERSION B +#define SCM_OBJCODE_MINOR_VERSION C #define SCM_OBJCODE_MAJOR_VERSION_STRING \ SCM_CPP_STRINGIFY(SCM_OBJCODE_MAJOR_VERSION) #define SCM_OBJCODE_MINOR_VERSION_STRING \ |