terminalframebuffer.cc: ignore unknown renditions

(revert assert(false) added by 4835dcf)
(fixes #918)
This commit is contained in:
Keith Winstein
2017-08-17 12:21:09 -07:00
parent 6f9de49c27
commit 790b479f8a
+1 -1
View File
@@ -497,7 +497,7 @@ void Renditions::set_rendition( color_type num )
case 5: case 25: set_attribute(blink, value); break;
case 7: case 27: set_attribute(inverse, value); break;
case 8: case 28: set_attribute(invisible, value); break;
default: assert(false);
default: break; /* ignore unknown rendition */
}
}