Use proper quotes everywhere

This commit is contained in:
Eelco Dolstra
2014-08-20 18:03:48 +02:00
parent 373fad75e1
commit 11849a320e
54 changed files with 548 additions and 543 deletions
+1 -1
View File
@@ -224,7 +224,7 @@ struct ExprLambda : Expr
: pos(pos), arg(arg), matchAttrs(matchAttrs), formals(formals), body(body)
{
if (!arg.empty() && formals && formals->argNames.find(arg) != formals->argNames.end())
throw ParseError(format("duplicate formal function argument `%1%' at %2%")
throw ParseError(format("duplicate formal function argument %1% at %2%")
% arg % pos);
};
void setName(Symbol & name);