diff options
author | 2014-09-04 15:56:00 -0400 | |
---|---|---|
committer | 2014-09-04 15:56:00 -0400 | |
commit | f4aaf5eabdc8cccf2112fc79a93dec9f54c6870a (patch) | |
tree | 87de0669fbc0c3708abc8e08dd839b3c579ce1cc /modules/textadept/run.lua | |
parent | 5433ae87f74cb6db7009c986f81d4b503afbc7ce (diff) | |
download | textadept-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/run.lua')
-rw-r--r-- | modules/textadept/run.lua | 2 |
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 |