File tree Expand file tree Collapse file tree 3 files changed +0
-34
lines changed Expand file tree Collapse file tree 3 files changed +0
-34
lines changed Original file line number Diff line number Diff line change 1
- /*
2
- * additions.c
3
- *
4
- * Holds the additions functions to the console.
5
- *
6
- */
7
1
8
2
#if defined(LUACON_ADDITIONS )
9
3
Original file line number Diff line number Diff line change 1
1
2
- /*
3
- * Lua.c Console
4
- *
5
- * - Line by Line interpretation
6
- * - Files executed by passing
7
- * - Working directory support
8
- * - Built in stack-dump
9
- * Works with:
10
- * Lua5.3.x, Lua5.2.x, Lua5.1.x
11
- *
12
- * 5.2.x and 5.1.x assume that you have enough memory to start initial functions.
13
- *
14
- */
15
-
16
2
#define PRIMARY_BUFFER_SIZE (1024 + 1)
17
3
#define SECONDARY_BUFFER_SIZE (1032 + 1)
18
4
Original file line number Diff line number Diff line change 1
1
2
- /*
3
- * Lua.c Console
4
- *
5
- * - Line by Line interpretation
6
- * - Files executed by passing
7
- * - Working directory support
8
- * - Built in stack-dump
9
- * Works with:
10
- * Lua5.3.x, Lua5.2.x, Lua5.1.x
11
- *
12
- * 5.2.x and 5.1.x assume that you have enough memory to start initial functions.
13
- *
14
- */
15
-
16
2
#define PRIMARY_BUFFER_SIZE (1024 + 1)
17
3
#define SECONDARY_BUFFER_SIZE (1032 + 1)
18
4
You can’t perform that action at this time.
0 commit comments