Commit e33fb81b authored by Johny Mattsson's avatar Johny Mattsson
Browse files

Decouple LUAL_BUFFERSIZE from BUFSIZ, revert to 1024.

The IDF has dropped BUFSIZ to 128, which is not a good thing for our Lua.
parent cffa94d1
...@@ -550,7 +550,7 @@ extern int readline4lua(const char *prompt, char *buffer, int length); ...@@ -550,7 +550,7 @@ extern int readline4lua(const char *prompt, char *buffer, int length);
** For example: If set to 4K a call to string.gsub will need more than ** For example: If set to 4K a call to string.gsub will need more than
** 5k C stack space. ** 5k C stack space.
*/ */
#define LUAL_BUFFERSIZE BUFSIZ #define LUAL_BUFFERSIZE 1024
/* }================================================================== */ /* }================================================================== */
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment