diff options
author | Andy Wingo <wingo@pobox.com> | 2020-08-26 21:46:42 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2020-08-26 21:46:42 +0200 |
commit | c8c67eba916d97488e5f6ac4c116fce4180a9c2c (patch) | |
tree | 63efe3f9189a7065b8fab31fd4e81ce34dca2efc /libguile | |
parent | 8b994be59fc4d9d23d8fad546deca3dbb2d29df7 (diff) | |
download | guile-c8c67eba916d97488e5f6ac4c116fce4180a9c2c.tar.gz |
Bump objcode minor version to 4
* libguile/loader.h (SCM_OBJCODE_MINOR_VERSION): Accept up to version 4.
* module/system/vm/assembler.scm (*bytecode-minor-version*): Produce
version 4.
Diffstat (limited to 'libguile')
-rw-r--r-- | libguile/loader.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/loader.h b/libguile/loader.h index 09fb0afb6..765714fc2 100644 --- a/libguile/loader.h +++ b/libguile/loader.h @@ -40,7 +40,7 @@ /* Major and minor versions must be single characters. */ #define SCM_OBJCODE_MAJOR_VERSION 4 #define SCM_OBJCODE_MINIMUM_MINOR_VERSION 2 -#define SCM_OBJCODE_MINOR_VERSION 3 +#define SCM_OBJCODE_MINOR_VERSION 4 #define SCM_OBJCODE_MAJOR_VERSION_STRING \ SCM_CPP_STRINGIFY(SCM_OBJCODE_MAJOR_VERSION) #define SCM_OBJCODE_MINOR_VERSION_STRING \ |