aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2020-05-27 09:29:22 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2020-05-27 09:29:22 -0400
commitf115513081ade0b13cc6a2e0d14fc9dc44c57eac (patch)
treebdbb7a5d923d605bc5b5e16790f5125e644d3bda /src
parenta0e14a2f9e18e324f94b6577f5bae2990b882a9d (diff)
downloadtextadept-f115513081ade0b13cc6a2e0d14fc9dc44c57eac.tar.gz
textadept-f115513081ade0b13cc6a2e0d14fc9dc44c57eac.zip
Fixed compile error on Windows.
Diffstat (limited to 'src')
-rw-r--r--src/lua.patch4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lua.patch b/src/lua.patch
index 18acae63..00c181c6 100644
--- a/src/lua.patch
+++ b/src/lua.patch
@@ -141,14 +141,14 @@ diff -r 8a23edc91533 src/luaconf.h
+ lua_State *L;
+ int ref;
+#if !_WIN32
-+ int pid, fstdin, fstdout, fstderr, exit_status;
++ int pid, fstdin, fstdout, fstderr;
+#else
+ HANDLE pid, fstdin, fstdout, fstderr;
+#endif
+#if (GTK && !__APPLE__)
+ GIOChannel *cstdout, *cstderr;
+#endif
-+ int stdout_cb, stderr_cb, exit_cb;
++ int stdout_cb, stderr_cb, exit_cb, exit_status;
+} PStream;
+
+/** p:status() Lua function. */