summaryrefslogtreecommitdiffstats
path: root/package/lua/5.3.4/0011-linenoise.patch
diff options
context:
space:
mode:
authorFrancois Perrad <fperrad@gmail.com>2017-01-30 12:03:27 +0100
committerPeter Korsgaard <peter@korsgaard.com>2017-01-30 13:32:56 +0100
commita92c6806b5a3cd1645444803e53a7d18cd18e63e (patch)
treedbd8efb9cd9bf9c622b0e478f98b64ee48af6a27 /package/lua/5.3.4/0011-linenoise.patch
parent3e74c1312d35866c05813b4690412548eaaff61a (diff)
downloadbuildroot-a92c6806b5a3cd1645444803e53a7d18cd18e63e.tar.gz
buildroot-a92c6806b5a3cd1645444803e53a7d18cd18e63e.zip
lua: bump to version 5.3.4
[Peter: drop MESSAGE call] Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/lua/5.3.4/0011-linenoise.patch')
-rw-r--r--package/lua/5.3.4/0011-linenoise.patch24
1 files changed, 24 insertions, 0 deletions
diff --git a/package/lua/5.3.4/0011-linenoise.patch b/package/lua/5.3.4/0011-linenoise.patch
new file mode 100644
index 0000000000..574e6c8f0b
--- /dev/null
+++ b/package/lua/5.3.4/0011-linenoise.patch
@@ -0,0 +1,24 @@
+Add support of linenoise (replace readline)
+
+see discussion, http://lua-users.org/lists/lua-l/2010-03/msg00879.html
+
+Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
+
+Index: b/src/lua.c
+===================================================================
+--- a/src/lua.c
++++ b/src/lua.c
+@@ -85,6 +85,13 @@
+ #define lua_saveline(L,line) ((void)L, add_history(line))
+ #define lua_freeline(L,b) ((void)L, free(b))
+
++#elif defined(LUA_USE_LINENOISE)
++
++#include <linenoise.h>
++#define lua_readline(L,b,p) ((void)L, ((b)=linenoise(p)) != NULL)
++#define lua_saveline(L,line) ((void)L, linenoiseHistoryAdd(line))
++#define lua_freeline(L,b) ((void)L, free(b))
++
+ #else /* }{ */
+
+ #define lua_readline(L,b,p) \
OpenPOWER on IntegriCloud