mutt_enter_string is only used for _mutt_get_field for real.
[apps/madmutt.git] / lib-lua / lib-lua.h
index 3adc746..2a96a7d 100644 (file)
@@ -21,7 +21,7 @@
 #define MUTT_LIB_LUA_LIB_LUA_H
 
 #ifdef HAVE_CONFIG_H
-# include "../config.h"
+# include <config.h>
 #endif
 
 #include <lua.h>
@@ -42,6 +42,8 @@ typedef enum quadopt_t {
 void luaM_initialize(void);
 void luaM_shutdown(void);
 
+lua_State *luaM_getruntime(void);
+
 int luaM_dofile(const char *filename);
 int luaM_wrap(void (*errfun)(const char *fmt, ...)
               __attribute__((format(printf, 1, 2))),