edit: Remove unused func

This commit is contained in:
Cheer Xiao 2013-09-27 21:27:42 +08:00
parent 516e26177a
commit ad6ce84204

View File

@ -15,10 +15,6 @@ type Key struct {
var ZeroKey = Key{}
func AltKey(r rune) Key {
return Key{r, Alt}
}
func (k Key) String() (s string) {
if k.Mod & Ctrl != 0 {
s += "Ctrl-"