Skip to content

Commit 833f354

Browse files
committed
1.24.0 update.
1 parent 7aa41e8 commit 833f354

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

79 files changed

+33048
-12060
lines changed

janet/janet.c

Lines changed: 12118 additions & 11986 deletions
Large diffs are not rendered by default.

janet/janet.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@
2626
#define JANETCONF_H
2727

2828
#define JANET_VERSION_MAJOR 1
29-
#define JANET_VERSION_MINOR 23
29+
#define JANET_VERSION_MINOR 24
3030
#define JANET_VERSION_PATCH 0
3131
#define JANET_VERSION_EXTRA ""
32-
#define JANET_VERSION "1.23.0"
32+
#define JANET_VERSION "1.24.0"
3333

3434
/* #define JANET_BUILD "local" */
3535

@@ -228,9 +228,9 @@ extern "C" {
228228
#endif
229229

230230
/* Enable or disable the FFI library. Currently, FFI only enabled on
231-
* x86-64, non-windows operating systems. */
231+
* x86-64 operating systems. */
232232
#ifndef JANET_NO_FFI
233-
#if !defined(JANET_WINDOWS) && !defined(__EMSCRIPTEN__) && (defined(__x86_64__) || defined(_M_X64))
233+
#if !defined(__EMSCRIPTEN__) && (defined(__x86_64__) || defined(_M_X64))
234234
#define JANET_FFI
235235
#endif
236236
#endif

0 commit comments

Comments
 (0)