aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/textadept.c
diff options
context:
space:
mode:
authorGravatar mitchell <70453897+667e-11@users.noreply.github.com>2020-07-29 19:47:10 -0400
committerGravatar mitchell <70453897+667e-11@users.noreply.github.com>2020-07-29 19:47:10 -0400
commite291f59df6e9087f85b855bed3917decc66db0ab (patch)
tree2df55f8b087aac0609a1f89a96f95c41712ef4fa /src/textadept.c
parent38a38675f2b1e6df3a5cfd44c7fdf5d0b90ad0ed (diff)
Once again removed accidencally committed changes.
Diffstat (limited to 'src/textadept.c')
-rw-r--r--src/textadept.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/textadept.c b/src/textadept.c
index 26c0002e..104492e1 100644
--- a/src/textadept.c
+++ b/src/textadept.c
@@ -806,20 +806,6 @@ static int menu(lua_State *L) {
#endif
}
-/** `ui.update()` Lua function. */
-static int update_ui(lua_State *L) {
-#if GTK
- while (gtk_events_pending()) gtk_main_iteration();
-#elif (CURSES && !_WIN32)
- struct timeval timeout = {0, 1e5}; // 0.1s
- int nfds = os_spawn_pushfds(L);
- while (select(nfds, lua_touserdata(L, -1), NULL, NULL, &timeout) > 0)
- if (os_spawn_readfds(L) >= 0) refresh_all();
- lua_pop(L, 1); // fd_set
-#endif
- return 0;
-}
-
/** `ui.__index` Lua metamethod. */
static int ui_index(lua_State *L) {
const char *key = lua_tostring(L, 2);
@@ -1574,7 +1560,6 @@ static bool init_lua(lua_State *L, int argc, char **argv, bool reinit) {
lua_pushcfunction(L, get_split_table), lua_setfield(L, -2, "get_split_table");
lua_pushcfunction(L, goto_view), lua_setfield(L, -2, "goto_view");
lua_pushcfunction(L, menu), lua_setfield(L, -2, "menu");
- lua_pushcfunction(L, update_ui), lua_setfield(L, -2, "update");
set_metatable(L, -1, "ta_ui", ui_index, ui_newindex);
lua_setglobal(L, "ui");