func unicode.IsPrint

7 uses

	unicode (current package)
		graphic.go#L50: func IsPrint(r rune) bool {

	regexp/syntax
		regexp.go#L255: 	if unicode.IsPrint(r) {

	src.elv.sh/pkg/eval
		glob.go#L58: 	"print":   unicode.IsPrint,

	src.elv.sh/pkg/parse
		parse.go#L722: 	return (r >= 0x80 && unicode.IsPrint(r)) ||
		quote.go#L26: 		if !unicode.IsPrint(r) {
		quote.go#L57: 		if !unicode.IsPrint(r) {
		quote.go#L107: 		} else if !unicode.IsPrint(r) {