From 338baff1fd53531acb65419ef1f7350e37d66dba Mon Sep 17 00:00:00 2001 From: cancel Date: Sun, 26 Jan 2020 07:47:31 +0900 Subject: [PATCH] Add missing '?' for valid glyph check --- base.h | 1 + 1 file changed, 1 insertion(+) diff --git a/base.h b/base.h index b8846d8..4432b21 100644 --- a/base.h +++ b/base.h @@ -100,6 +100,7 @@ static bool is_valid_glyph(Glyph c) { return true; switch (c) { case '!': + case '?': case '.': case '*': case ':':