File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -638,6 +638,9 @@ void (SET_MISSING)(SEXP x, int v);
638638SEXP CONS_NR (SEXP a , SEXP b );
639639
640640/* Symbol Access Functions */
641+ SEXP (SYMVALUE )(SEXP x );
642+ SEXP (INTERNAL )(SEXP x );
643+ int (DDVAL )(SEXP x );
641644void (SET_DDVAL )(SEXP x , int v );
642645void SET_PRINTNAME (SEXP x , SEXP v );
643646void SET_SYMVALUE (SEXP x , SEXP v );
@@ -650,6 +653,7 @@ void SET_ENCLOS(SEXP x, SEXP v);
650653void SET_HASHTAB (SEXP x , SEXP v );
651654
652655/* Promise Access Functions */
656+ int (PRSEEN )(SEXP x );
653657void (SET_PRSEEN )(SEXP x , int v );
654658void SET_PRENV (SEXP x , SEXP v );
655659void SET_PRVALUE (SEXP x , SEXP v );
Original file line number Diff line number Diff line change @@ -362,9 +362,9 @@ SEXP R_ClosureEnv(SEXP);
362362
363363/* Symbol Access Functions */
364364SEXP (PRINTNAME)(SEXP x);
365- SEXP (SYMVALUE)(SEXP x);
366- SEXP (INTERNAL)(SEXP x);
367- int (DDVAL)(SEXP x);
365+ // SEXP (SYMVALUE)(SEXP x);
366+ // SEXP (INTERNAL)(SEXP x);
367+ // int (DDVAL)(SEXP x);
368368
369369/* Environment Access Functions */
370370SEXP (FRAME)(SEXP x);
@@ -377,7 +377,7 @@ SEXP R_ParentEnv(SEXP);
377377SEXP (PRCODE)(SEXP x);
378378SEXP (PRENV)(SEXP x);
379379SEXP (PRVALUE)(SEXP x);
380- int (PRSEEN)(SEXP x);
380+ // int (PRSEEN)(SEXP x);
381381
382382/* External pointer access macros */
383383SEXP (EXTPTR_PROT)(SEXP);
You can’t perform that action at this time.
0 commit comments