Skip to content
Snippets Groups Projects
Commit 53960de2 authored by Lukas Stadler's avatar Lukas Stadler
Browse files

fix for environmentName

parent e33d4382
No related branches found
No related tags found
No related merge requests found
......@@ -491,7 +491,7 @@ public class EnvFunctions {
ContextStateImpl state = RContext.getInstance().stateREnvironment;
if (env == state.getGlobalEnv()) {
return "R_GlobalEnv";
} else if (env == state.getBaseEnv()) {
} else if (env == state.getBaseEnv() || env == state.getBaseNamespace()) {
return "base";
} else if (env == REnvironment.emptyEnv()) {
return "R_EmptyEnv";
......
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