Skip to content
Snippets Groups Projects
Commit f6705816 authored by stepan's avatar stepan
Browse files

Fix: options with list set wrong visibility

parent c346ecd2
No related branches found
No related tags found
No related merge requests found
......@@ -119,7 +119,7 @@ public class OptionsFunctions {
for (int i = 0; i < values.length; i++) {
String argName = signature.getName(i);
Object value = values[i];
if (argNameNull.profile(argName == null)) {
if (argNameNull.profile(argName == null || value instanceof RList)) {
// getting
String optionName = null;
if (value instanceof RStringVector) {
......@@ -146,6 +146,8 @@ public class OptionsFunctions {
listNames[j] = name;
options.setValue(name, list.getDataAtAsObject(j));
}
// any settings means result is invisible
visible = false;
// if this is the only argument, no need to copy, can just return
if (values.length == 1) {
data = listData;
......
......@@ -54,6 +54,7 @@ public class TestBuiltin_options extends TestBase {
assertEval("{ getOption(NULL) }");
assertEval("{ getOption(character()) }");
assertEval("{ options(\"timeout\", \"width\") }");
assertEval("{ options(options(digits = 5)) }");
}
@Test
......
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