Skip to content

Commit

Permalink
refactor: resize the MAX var of stack and table
Browse files Browse the repository at this point in the history
  • Loading branch information
xxrjun committed Dec 28, 2023
1 parent 5e51e20 commit 0d7fa60
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/minilisp.y
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
#define EXIT_WHEN_ERROR_IN_DEBUG_MODE 1

#define HASH_NUMBER 5381
#define MAX_SYMBOL_TABLE_SIZE 100000
#define MAX_SCOPE_STACK_SIZE 1000000
#define MAX_SYMBOL_TABLE_SIZE 100
#define MAX_SCOPE_STACK_SIZE 100

int yylex();
void yyerror(const char* message);
Expand Down

0 comments on commit 0d7fa60

Please sign in to comment.