Commit 9067cf6a authored by Yukihiro Matsumoto's avatar Yukihiro Matsumoto

should not quote || and && operators; close #253

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