diff options
author | 2012-10-12 13:15:53 -0400 | |
---|---|---|
committer | 2012-10-12 13:15:53 -0400 | |
commit | d672b9d9607510136abba15354f0451a8f0f1aea (patch) | |
tree | 98f24325f7f64851a93ae5665ae36c0f63d1b1d0 /src/textadept.c | |
parent | 836fab9afbb3fcfb11bf7d8e060f55c3cde59a1c (diff) | |
download | textadept-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.c | 2 |
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; } |