-
-
Notifications
You must be signed in to change notification settings - Fork 208
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: DL6ER <[email protected]>
- Loading branch information
Showing
2 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
patch/lua/0001-Increase-LUA_IDSIZE-so-that-long-script-filenames-as.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
From 835933f8501e517a781b380b8cfafa656adc6fa7 Mon Sep 17 00:00:00 2001 | ||
From: DL6ER <[email protected]> | ||
Date: Mon, 23 Sep 2024 13:25:34 +0200 | ||
Subject: [PATCH] Increase LUA_IDSIZE so that long script filenames as well as | ||
long script lines fit into the error logging buffer | ||
|
||
Signed-off-by: DL6ER <[email protected]> | ||
--- | ||
src/lua/luaconf.h | 2 +- | ||
1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
||
diff --git a/src/lua/luaconf.h b/src/lua/luaconf.h | ||
index 33bb580d..dacc5221 100644 | ||
--- a/src/lua/luaconf.h | ||
+++ b/src/lua/luaconf.h | ||
@@ -765,7 +765,7 @@ | ||
** of a function in debug information. | ||
** CHANGE it if you want a different size. | ||
*/ | ||
-#define LUA_IDSIZE 60 | ||
+#define LUA_IDSIZE 256 | ||
|
||
|
||
/* | ||
-- | ||
2.34.1 | ||
|