Reverted the function argumentIsOption
diff --git a/optstyle_other.go b/optstyle_other.go
index 815db54..29ca4b6 100644
--- a/optstyle_other.go
+++ b/optstyle_other.go
@@ -4,7 +4,6 @@
 
 import (
 	"strings"
-	"unicode"
 )
 
 const (
@@ -18,7 +17,7 @@
 }
 
 func argumentIsOption(arg string) bool {
-	if len(arg) > 1 && arg[0] == '-' && arg[1] != '-' && !unicode.IsDigit(rune(arg[1])) {
+	if len(arg) > 1 && arg[0] == '-' && arg[1] != '-' {
 		return true
 	}