1
0
Fork 0
mirror of https://github.com/Reuh/anselme.git synced 2025-10-27 16:49:31 +00:00

Bump version

This commit is contained in:
Étienne Fildadut 2022-09-16 16:40:13 +09:00
parent ef5e1a577f
commit fe897688d6
4 changed files with 5 additions and 4 deletions

View file

@ -538,7 +538,7 @@ common = {
-- returns true in case of success
-- returns nil, err in case of error
make_space_for = function(self, state, type)
if #state.interpreter.event_buffer_stack == 0 and state.interpreter.current_event and state.interpreter.current_event.type ~= type then -- FIXME useful?
if #state.interpreter.event_buffer_stack == 0 and state.interpreter.current_event and state.interpreter.current_event.type ~= type then
return self:manual_flush(state)
end
return true