Skip to content

Commit

Permalink
new rules for quoting symbols - for new equality
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Suda committed Nov 16, 2017
1 parent 49b07b4 commit cdcffd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Kernel/Signature.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -908,7 +908,7 @@ bool Signature::symbolNeedsQuoting(vstring name, bool interpreted, unsigned arit
CALL("Signature::symbolNeedsQuoting");
ASS_G(name.length(),0);

if (interpreted && (name=="=" || arity==0)) {
if (name=="=" || (interpreted && arity==0)) {
return false;
}

Expand Down

0 comments on commit cdcffd9

Please sign in to comment.