Skip to content

Commit

Permalink
make the fake implementation of downcase a little less fake
Browse files Browse the repository at this point in the history
  • Loading branch information
NotFound committed Oct 26, 2011
1 parent a6a2eac commit b514bb9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion winxedxx.winxed
Expand Up @@ -415,7 +415,8 @@ function emit_callbuiltinexpr(out, expr)
break;

case 'downcase':
// Fake implementation, just copy the argument
// Fake implementation, just cast to string the argument
out.print(Type_String);
emit_expr(out, arg0);
break;

Expand Down

0 comments on commit b514bb9

Please sign in to comment.