aboutsummaryrefslogtreecommitdiff
path: root/src/textadept.h
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2010-10-22 18:09:16 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2010-10-22 18:09:16 -0400
commit7c787c527569bcc7db76d64fde678f833a0fb18a (patch)
treee2ff44eec7a32ea3e4c3672373d19a0ec5b0dd1b /src/textadept.h
parentd36297a9b666e52d5a3fbf9f08b953190ac2c7db (diff)
downloadtextadept-7c787c527569bcc7db76d64fde678f833a0fb18a.tar.gz
textadept-7c787c527569bcc7db76d64fde678f833a0fb18a.zip
Load lpeg and lfs manually instead of modifying Lua itself.
Diffstat (limited to 'src/textadept.h')
-rw-r--r--src/textadept.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/textadept.h b/src/textadept.h
index 6d9e2c75..36a848b9 100644
--- a/src/textadept.h
+++ b/src/textadept.h
@@ -58,4 +58,8 @@ int l_emit_event(const char *, ...);
void l_emit_scnnotification(struct SCNotification *);
void l_gui_popup_context_menu(GdkEventButton *);
+// Extra Lua libraries.
+LUALIB_API int (luaopen_lpeg) (lua_State *L);
+LUALIB_API int (luaopen_lfs) (lua_State *L);
+
#endif