Commit af21b365 authored by ksss's avatar ksss

symname_p support `!~`

parent 9145aed8
...@@ -354,7 +354,9 @@ symname_p(const char *name) ...@@ -354,7 +354,9 @@ symname_p(const char *name)
if (*++m == '*') ++m; if (*++m == '*') ++m;
break; break;
case '!': case '!':
if (*++m == '=') ++m; switch (*++m) {
case '=': case '~': ++m;
}
break; break;
case '+': case '-': case '+': case '-':
if (*++m == '@') ++m; if (*++m == '@') ++m;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment