Allow meters in text mode to span empty neighbors to the right

Closes: #484
This commit is contained in:
Christian Göttsche
2021-01-18 15:23:23 +01:00
committed by cgzones
parent 6f6e0ec571
commit 2ec44098f9
4 changed files with 43 additions and 14 deletions

View File

@ -15,8 +15,6 @@ const ObjectClass Object_class = {
.extends = NULL
};
#ifndef NDEBUG
bool Object_isA(const Object* o, const ObjectClass* klass) {
if (!o)
return false;
@ -29,5 +27,3 @@ bool Object_isA(const Object* o, const ObjectClass* klass) {
return false;
}
#endif /* NDEBUG */