aboutsummaryrefslogtreecommitdiff
path: root/modules/textadept
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2014-09-04 15:56:00 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2014-09-04 15:56:00 -0400
commitf4aaf5eabdc8cccf2112fc79a93dec9f54c6870a (patch)
tree87de0669fbc0c3708abc8e08dd839b3c579ce1cc /modules/textadept
parent5433ae87f74cb6db7009c986f81d4b503afbc7ce (diff)
downloadtextadept-f4aaf5eabdc8cccf2112fc79a93dec9f54c6870a.tar.gz
textadept-f4aaf5eabdc8cccf2112fc79a93dec9f54c6870a.zip
Enable true spawning on Mac OSX GUI version.
This requires lspawn r25 (changeset acdfac5eb4cf).
Diffstat (limited to 'modules/textadept')
-rw-r--r--modules/textadept/run.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/textadept/run.lua b/modules/textadept/run.lua
index 7c1c62b3..b756f76e 100644
--- a/modules/textadept/run.lua
+++ b/modules/textadept/run.lua
@@ -104,7 +104,7 @@ local function command(commands, event)
preferred_view = view
local events_emit = events.emit
local function emit_output(output, focus)
- ui.SILENT_PRINT = not focus and not OSX and true
+ ui.SILENT_PRINT = not focus
for line in output:gmatch('[^\r\n]+') do
events_emit(event, data, line:iconv('UTF-8', _CHARSET))
end