From 147dcbd2576ce2d047eb239cb74cdb802e1ddf1e Mon Sep 17 00:00:00 2001 From: mitchell <70453897+667e-11@users.noreply.github.com> Date: Sat, 16 Apr 2016 12:17:47 -0400 Subject: `events.CHAR_ADDED` emits a character code, not a byte. --- modules/textadept/run.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/textadept/run.lua') diff --git a/modules/textadept/run.lua b/modules/textadept/run.lua index 42710813..fec77088 100644 --- a/modules/textadept/run.lua +++ b/modules/textadept/run.lua @@ -264,9 +264,9 @@ events.connect(events.BUILD_OUTPUT, print_output) function M.stop() if M.proc then M.proc:kill() end end -- Send line as input to process stdin on return. -events.connect(events.CHAR_ADDED, function(byte) +events.connect(events.CHAR_ADDED, function(code) local proc = M.proc - if byte == 10 and proc and proc.status and proc:status() == 'running' and + if code == 10 and proc and proc.status and proc:status() == 'running' and buffer._type == _L['[Message Buffer]'] then local line_num = buffer:line_from_position(buffer.current_pos) - 1 proc:write((buffer:get_line(line_num))) -- cgit v1.2.3