aboutsummaryrefslogtreecommitdiff
path: root/src/textadept.c
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2012-07-26 18:08:53 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2012-07-26 18:08:53 -0400
commit65321a824c4d97377e4b214c2e616f86e3100f6c (patch)
tree4bab535669625cf9a3e3dac16cd76f50f563cb25 /src/textadept.c
parent3d1b4350bede7de4a6090b124891bdd576bf3f13 (diff)
downloadtextadept-65321a824c4d97377e4b214c2e616f86e3100f6c.tar.gz
textadept-65321a824c4d97377e4b214c2e616f86e3100f6c.zip
Fixes to compile ncurses version on Mac OSX.
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 3927895a..81a5da0d 100644
--- a/src/textadept.c
+++ b/src/textadept.c
@@ -2280,7 +2280,7 @@ int main(int argc, char **argv) {
if (lua = luaL_newstate(), !lL_init(lua, argc, argv, FALSE)) return 1;
new_window();
lL_dofile(lua, "init.lua");
-#if __APPLE__
+#if __APPLE__ && !NCURSES
gtk_osxapplication_ready(osxapp);
#endif