diff options
author | 2010-10-22 18:09:16 -0400 | |
---|---|---|
committer | 2010-10-22 18:09:16 -0400 | |
commit | 7c787c527569bcc7db76d64fde678f833a0fb18a (patch) | |
tree | e2ff44eec7a32ea3e4c3672373d19a0ec5b0dd1b /src/textadept.h | |
parent | d36297a9b666e52d5a3fbf9f08b953190ac2c7db (diff) | |
download | textadept-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.h | 4 |
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 |