Skip to content

Commit

Permalink
Merge pull request #213 from wrapl/dev
Browse files Browse the repository at this point in the history
dev
  • Loading branch information
rajamukherji authored Sep 2, 2024
2 parents 774e3eb + 84388f8 commit 61d4d08
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
rabs (2.32.0) UNRELEASED; urgency=medium
rabs (2.32.1) UNRELEASED; urgency=medium

* Updates.
* Updates.
Expand Down Expand Up @@ -68,5 +68,6 @@ rabs (2.32.0) UNRELEASED; urgency=medium
* Updates.
* Updates.
* Updates.
* Updates.

-- Raja Mukherji <raja@hinano> Wed, 28 Aug 2024 21:16:10 +0100
-- Raja Mukherji <raja@hinano> Mon, 02 Sep 2024 10:26:50 +0100
2 changes: 1 addition & 1 deletion minilang
2 changes: 1 addition & 1 deletion src/rabs.c
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ static ml_value_t *load_file(const char *FileName) {
Preprocessor->Compiler = ml_compiler((ml_getter_t)rabs_ml_global, NULL);
ml_parser_source(Preprocessor->Parser, (ml_source_t){FileName, 1});

load_file_state_t State[1];
load_file_state_t *State = new(load_file_state_t);
State->Base.run = (void *)load_file_loaded;
State->Base.Context = MLRootContext;
State->Result = MLNil;
Expand Down
2 changes: 1 addition & 1 deletion src/rabs.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ extern __thread target_t *CurrentTarget;
ml_value_t *rabs_global(const char *Name);
ml_value_t *rabs_ml_global(void *Data, const char *Name, const char *Source, int Line, int Mode);

#define CURRENT_VERSION 2, 32, 0
#define CURRENT_VERSION 2, 32, 1
#define MINIMAL_VERSION 2, 10, 0

#endif

0 comments on commit 61d4d08

Please sign in to comment.