The R Project SVN R

Rev

Rev 51482 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 51482 Rev 52081
Line 1299... Line 1299...
1299
    for (i = 0; i < R_MaxDevices; i++) {   /* Device display lists */
1299
    for (i = 0; i < R_MaxDevices; i++) {   /* Device display lists */
1300
	pGEDevDesc gdd = GEgetDevice(i);
1300
	pGEDevDesc gdd = GEgetDevice(i);
1301
	if (gdd) {
1301
	if (gdd) {
1302
	    FORWARD_NODE(gdd->displayList);
1302
	    FORWARD_NODE(gdd->displayList);
1303
	    FORWARD_NODE(gdd->savedSnapshot);
1303
	    FORWARD_NODE(gdd->savedSnapshot);
-
 
1304
	    if (gdd->dev)
-
 
1305
	    	FORWARD_NODE(gdd->dev->eventEnv);
1304
	}
1306
	}
1305
    }
1307
    }
1306
 
1308
 
1307
    for (ctxt = R_GlobalContext ; ctxt != NULL ; ctxt = ctxt->nextcontext) {
1309
    for (ctxt = R_GlobalContext ; ctxt != NULL ; ctxt = ctxt->nextcontext) {
1308
	FORWARD_NODE(ctxt->conexit);       /* on.exit expressions */
1310
	FORWARD_NODE(ctxt->conexit);       /* on.exit expressions */
Line 3068... Line 3070...
3068
    	R_VStack = vmax; /* discard any memory used by translateCharUTF8 */
3070
    	R_VStack = vmax; /* discard any memory used by translateCharUTF8 */
3069
    	return result;
3071
    	return result;
3070
    }
3072
    }
3071
}
3073
}
3072
 
3074
 
-
 
3075