ref: 910bfe3e9d2177b8efde268281233d5d1ed333cd
dir: /style/fonts_plan9.go/
// +build plan9
package style
import (
"fmt"
)
func initFontserver() {}
func (cs Map) FontFilename() string {
fontSize := matchClosestFontSize(cs.FontSize(), []int{6,7,8,10,13})
return fmt.Sprintf("/lib/font/bit/lucidasans/unicode.%v.font", fontSize)
}