From: Ben Harris Date: Mon, 11 Nov 2024 23:20:23 +0000 (+0000) Subject: Ignore stem hints in editor X-Git-Tag: bedstead-3.246~37 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~bjharris/git?a=commitdiff_plain;h=59a535c3359a32fbfb67164c65551c3e662f5919;p=bedstead.git Ignore stem hints in editor Though it would be neat if it could display them. --- diff --git a/editor b/editor index d2d1b38..5674b57 100755 --- a/editor +++ b/editor @@ -116,6 +116,7 @@ class EditorGui: except: if word == "rmoveto": self.rmoveto() elif word == "rlineto": self.rlineto() + elif word in ("hstem", "vstem"): self.stack = [] elif word == "endchar": pass else: print("unknown charstring component " + repr(word))