mirror of
https://git.code.sf.net/p/newrpl/sources
synced 2024-11-16 19:51:25 +01:00
Fixed bug: EVAL vs running from menu would cause different local environments to be created
This commit is contained in:
parent
859a14ec15
commit
22d37705e9
1 changed files with 1 additions and 1 deletions
|
@ -324,7 +324,7 @@ BINT rplNeedNewLAMEnv()
|
|||
|
||||
if(nLAMBase>=LAMs && nLAMBase<LAMTop) {
|
||||
if((ISPROLOG(**(nLAMBase+1)) && ((LIBNUM(**(nLAMBase+1))==SECO)||(LIBNUM(**(nLAMBase+1))==DOCOL)))
|
||||
|| (**(nLAMBase+1)==(CMD_OVR_EVAL))) {
|
||||
|| (**(nLAMBase+1)==(CMD_OVR_EVAL)) || (**(nLAMBase+1)==(CMD_OVR_EVAL1)) || (**(nLAMBase+1)==(CMD_OVR_XEQ))) {
|
||||
// THIS ENVIRONMENT BELONGS TO A SECONDARY
|
||||
if(*(nLAMBase+1)==seco) {
|
||||
// FOUND AN ENVIRONMENT THAT BELONGS TO THE CURRENT SECONDARY, SO NO NEED FOR ONE
|
||||
|
|
Loading…
Reference in a new issue