1
0
mirror of https://github.com/digarok/hihex.git synced 2026-04-20 08:17:29 +00:00

Space is a char. Not sure about backspace. :P

This commit is contained in:
Dagen Brock
2015-07-08 14:59:51 -05:00
parent 76fb2b6489
commit f1de6c4ea7
+1 -1
View File
@@ -14,7 +14,7 @@ func check(e error) {
}
func isAscii(b byte) bool {
return b > 32 && b < 127
return b >= 32 && b < 127
}
func usage() {