aboutsummaryrefslogtreecommitdiff
path: root/src/textadept.c
diff options
context:
space:
mode:
authormitchell <70453897+orbitalquark@users.noreply.github.com>2021-02-09 14:08:12 -0500
committermitchell <70453897+orbitalquark@users.noreply.github.com>2021-02-09 14:08:12 -0500
commited88bfea09b7b4be9b5e9f144e4c37bf32798445 (patch)
treee335c3a5fe53786c5d6c0f4a97f8a18b7a0ed6b3 /src/textadept.c
parentd807c2c2b005badbef80c45cc79d0f5ed5730ba9 (diff)
downloadtextadept-ed88bfea09b7b4be9b5e9f144e4c37bf32798445.tar.gz
textadept-ed88bfea09b7b4be9b5e9f144e4c37bf32798445.zip
Fixed curses compile error introduced in previous commit.
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 e8dc5584..43b58f09 100644
--- a/src/textadept.c
+++ b/src/textadept.c
@@ -1613,7 +1613,7 @@ static bool init_lua(lua_State *L, int argc, char **argv, bool reinit) {
if (platform) lua_pushboolean(L, true), lua_setglobal(L, platform);
#if CURSES
lua_pushboolean(L, true), lua_setglobal(L, "CURSES");
- show_tabs = 0; // TODO: tabs
+ tabs = 0; // TODO: tabs
#endif
const char *charset = NULL;
#if GTK