diff options
author | 2012-07-26 18:08:53 -0400 | |
---|---|---|
committer | 2012-07-26 18:08:53 -0400 | |
commit | 65321a824c4d97377e4b214c2e616f86e3100f6c (patch) | |
tree | 4bab535669625cf9a3e3dac16cd76f50f563cb25 /src/textadept.c | |
parent | 3d1b4350bede7de4a6090b124891bdd576bf3f13 (diff) | |
download | textadept-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.c | 2 |
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 |