Commit f06eceaa authored by Yukihiro Matsumoto's avatar Yukihiro Matsumoto

since 1.9 "!=" op is a method call

parent b7cc7fff
......@@ -288,12 +288,14 @@ symname_p(const char *name)
case '*':
if (*++m == '*') ++m;
break;
case '!':
if (*++m == '=') ++m;
break;
case '+': case '-':
if (*++m == '@') ++m;
break;
case '|': case '^': case '&': case '/': case '%': case '~': case '`': case '!':
case '|': case '^': case '&': case '/': case '%': case '~': case '`':
++m;
break;
......
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