From e34b829bbb284972dd391ae00b22274e47d55f16 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Andr=C3=A9=20Tanner?= Date: Sat, 28 Apr 2018 11:34:26 +0200 Subject: vis: remove v and V in operator pending mode --- vis-lua.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vis-lua.c') diff --git a/vis-lua.c b/vis-lua.c index 124e380..70c3996 100644 --- a/vis-lua.c +++ b/vis-lua.c @@ -1016,7 +1016,7 @@ static size_t motion_lua(Vis *vis, Win *win, void *data, size_t pos) { static int motion_register(lua_State *L) { Vis *vis = obj_ref_check(L, 1, "vis"); const void *func = func_ref_new(L, 2); - int id = vis_motion_register(vis, 0, (void*)func, motion_lua); + int id = vis_motion_register(vis, (void*)func, motion_lua); lua_pushinteger(L, id); return 1; } -- cgit v1.2.3