Skip to content
Snippets Groups Projects
Commit 3b788842 authored by Tomas Stupka's avatar Tomas Stupka
Browse files

fix "... = ..." in deparsed fun calls

parent 2676cbea
No related branches found
No related tags found
No related merge requests found
......@@ -839,6 +839,9 @@ public class RDeparse {
} else {
append(quotify(name, BACKTICK));
}
if ("...".equals(name) && argument instanceof RSyntaxLookup && "...".equals(((RSyntaxLookup) argument).getIdentifier())) {
continue;
}
if (!formals || argument != null) {
append(" = ");
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment