diff options
Diffstat (limited to 'modules/textadept/editing.lua')
-rw-r--r-- | modules/textadept/editing.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/textadept/editing.lua b/modules/textadept/editing.lua index 26f53449..9235aa70 100644 --- a/modules/textadept/editing.lua +++ b/modules/textadept/editing.lua @@ -601,7 +601,7 @@ function M.filter_through(command) local p = assert(spawn(commands[i])) p:write(output) p:close() - output = p:read('*a') or '' + output = p:read('a') or '' end buffer:replace_target(output:iconv('UTF-8', _CHARSET)) if s ~= e then |