Skip to content

Commit

Permalink
symname_p support !~
Browse files Browse the repository at this point in the history
  • Loading branch information
ksss committed Jan 6, 2016
1 parent 9145aed commit af21b36
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/symbol.c
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,9 @@ symname_p(const char *name)
if (*++m == '*') ++m;
break;
case '!':
if (*++m == '=') ++m;
switch (*++m) {
case '=': case '~': ++m;
}
break;
case '+': case '-':
if (*++m == '@') ++m;
Expand Down

0 comments on commit af21b36

Please sign in to comment.