minor fixes
[ia32rtools.git] / tools / my_str.h
index f541481..60fcc76 100644 (file)
@@ -6,7 +6,7 @@ static int my_isblank(char c)
 static int my_issep(char c)
 {
        return c == '(' || c == ')' || c == '[' || c == ']'
-           || c == '<' || c == '>' || c == ','
+           || c == '<' || c == '>' || c == ',' || c == ';'
            || c == '+' || c == '-' || c == '*' || c == '/';
 }