aboutsummaryrefslogtreecommitdiff
path: root/src/textadept.c
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2012-10-12 13:15:53 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2012-10-12 13:15:53 -0400
commitd672b9d9607510136abba15354f0451a8f0f1aea (patch)
tree98f24325f7f64851a93ae5665ae36c0f63d1b1d0 /src/textadept.c
parent836fab9afbb3fcfb11bf7d8e060f55c3cde59a1c (diff)
downloadtextadept-d672b9d9607510136abba15354f0451a8f0f1aea.tar.gz
textadept-d672b9d9607510136abba15354f0451a8f0f1aea.zip
Fixed ncurses bug in command selection introduced by r1256.
Diffstat (limited to 'src/textadept.c')
-rw-r--r--src/textadept.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/textadept.c b/src/textadept.c
index 618dedce..c4e6fbe9 100644
--- a/src/textadept.c
+++ b/src/textadept.c
@@ -895,7 +895,7 @@ static int lgui_menu(lua_State *L) {
#if GTK
l_pushmenu(L, -1, G_CALLBACK(m_clicked), FALSE);
#elif NCURSES
- luaL_error(L, "not implemented in this environment");
+ lua_pushnil(L);
#endif
return 1;
}