cinera.c: InitScopeBooks() in PrintHelpConfig()
This commit is contained in:
parent
bc6f21f71d
commit
7edcecfd40
|
@ -23,7 +23,7 @@ typedef struct
|
||||||
version CINERA_APP_VERSION = {
|
version CINERA_APP_VERSION = {
|
||||||
.Major = 0,
|
.Major = 0,
|
||||||
.Minor = 7,
|
.Minor = 7,
|
||||||
.Patch = 12
|
.Patch = 13
|
||||||
};
|
};
|
||||||
|
|
||||||
#include <stdarg.h> // NOTE(matt): varargs
|
#include <stdarg.h> // NOTE(matt): varargs
|
||||||
|
@ -7167,6 +7167,7 @@ enable syntax highlighting:"));
|
||||||
//
|
//
|
||||||
NewSection("Defaults", &IndentationLevel);
|
NewSection("Defaults", &IndentationLevel);
|
||||||
scope_tree *ScopeTree = calloc(1, sizeof(scope_tree));
|
scope_tree *ScopeTree = calloc(1, sizeof(scope_tree));
|
||||||
|
InitScopeBooks(ScopeTree);
|
||||||
SetTypeSpec(ScopeTree, &TypeSpecs);
|
SetTypeSpec(ScopeTree, &TypeSpecs);
|
||||||
SetDefaults(ScopeTree, &TypeSpecs);
|
SetDefaults(ScopeTree, &TypeSpecs);
|
||||||
PrintScopeTree(ScopeTree, IndentationLevel);
|
PrintScopeTree(ScopeTree, IndentationLevel);
|
||||||
|
|
Loading…
Reference in New Issue