Fix bad sequence injection

This commit is contained in:
K. Lange 2022-03-29 09:36:37 +09:00
parent 4a85549a1f
commit 0fa2f49561

View file

@ -556,7 +556,7 @@ class Backend():
## Invisible stuff ## Invisible stuff
i -= 1 i -= 1
let colourseq = Backend.getColour(line, i) let colourseq = Backend.getColour(line, i)
b[bi : bi + len(colourseq)] = colourseq b[bi : bi + len(colourseq)] = [colourseq]
i += len(colourseq) i += len(colourseq)
bi += len(colourseq) bi += len(colourseq)
elif (d is not None) and (d != ' '): elif (d is not None) and (d != ' '):