Merge remote-tracking branch 'upstream/master'

This commit is contained in:
Sys Quatre 2021-01-24 12:54:09 +01:00
commit dd8432ef34
1 changed files with 2 additions and 3 deletions

View File

@ -84,9 +84,8 @@ local create_lines = function(text)
line = word
end
else
if word == " " then
-- don't add the space since we have a line break
else
-- don't add the space since we have a line break
if word ~= " " then
if line_len > 0 then
-- ok, we need the new line
if flush_line_and_check_for_return() then return tab end