From d524507b63399bc67844564ae3787924193a0838 Mon Sep 17 00:00:00 2001 From: benmrosemeyer-wf Date: Mon, 20 Nov 2017 12:04:06 -0700 Subject: [PATCH] testing --- truetype/truetype.go | 1 + 1 file changed, 1 insertion(+) diff --git a/truetype/truetype.go b/truetype/truetype.go index 7270bbf..0d577ec 100644 --- a/truetype/truetype.go +++ b/truetype/truetype.go @@ -411,6 +411,7 @@ func (f *Font) Index(x rune) Index { // Name returns the Font's name value for the given NameID. It returns "" if // there was an error, or if that name was not found. func (f *Font) Name(id NameID) string { + fmt.Println("YOU ARE DOING IT!") x, platformID, err := parseSubtables(f.name, "name", 6, 12, func(b []byte) bool { return NameID(u16(b, 6)) == id })