Skip to content

Commit

Permalink
CHANGE: not setting datatypes value in the library context
Browse files Browse the repository at this point in the history
  • Loading branch information
Oldes committed Sep 16, 2022
1 parent 381337c commit 972dcc0
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/core/b-init.c
Original file line number Diff line number Diff line change
Expand Up @@ -261,8 +261,11 @@ extern const REBYTE Str_Banner[];
Make_Native(value, Copy_Block(spec, 0), (REBFUN)A_TYPE, REB_ACTION);
}

value = Append_Frame(Lib_Context, 0, SYM_DATATYPES);
*value = Boot_Block->types;
// In Rebol2 there was a global `datatypes` value holding block with all datatypes names
// In Rebol3 there is system/catalog/datatypes with block of all datatypes, so the old
// global value is not needed anymore. I hope. Oldes.
//value = Append_Frame(Lib_Context, 0, SYM_DATATYPES);
//*value = Boot_Block->types;
}


Expand Down

0 comments on commit 972dcc0

Please sign in to comment.