Skip to content

Commit 6a043d9

Browse files
author
luke
committed
Moved some declarations from Rinternals.h to Defn.h.
git-svn-id: https://svn.r-project.org/R/trunk@89050 00db46b3-68df-0310-9c12-caf00c1e9a41
1 parent f3dde5a commit 6a043d9

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

src/include/Defn.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -638,6 +638,9 @@ void (SET_MISSING)(SEXP x, int v);
638638
SEXP 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);
641644
void (SET_DDVAL)(SEXP x, int v);
642645
void SET_PRINTNAME(SEXP x, SEXP v);
643646
void SET_SYMVALUE(SEXP x, SEXP v);
@@ -650,6 +653,7 @@ void SET_ENCLOS(SEXP x, SEXP v);
650653
void SET_HASHTAB(SEXP x, SEXP v);
651654

652655
/* Promise Access Functions */
656+
int (PRSEEN)(SEXP x);
653657
void (SET_PRSEEN)(SEXP x, int v);
654658
void SET_PRENV(SEXP x, SEXP v);
655659
void SET_PRVALUE(SEXP x, SEXP v);

src/include/Rinternals.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -362,9 +362,9 @@ SEXP R_ClosureEnv(SEXP);
362362

363363
/* Symbol Access Functions */
364364
SEXP (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 */
370370
SEXP (FRAME)(SEXP x);
@@ -377,7 +377,7 @@ SEXP R_ParentEnv(SEXP);
377377
SEXP (PRCODE)(SEXP x);
378378
SEXP (PRENV)(SEXP x);
379379
SEXP (PRVALUE)(SEXP x);
380-
int (PRSEEN)(SEXP x);
380+
//int (PRSEEN)(SEXP x);
381381

382382
/* External pointer access macros */
383383
SEXP (EXTPTR_PROT)(SEXP);

0 commit comments

Comments
 (0)