The R Project SVN R

Rev

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

Rev 46470 Rev 47481
Line 649... Line 649...
649
						   if set by R itself */
649
						   if set by R itself */
650
extern0 char	R_StdinEnc[31]  INI_as("");	/* Encoding assumed for stdin */
650
extern0 char	R_StdinEnc[31]  INI_as("");	/* Encoding assumed for stdin */
651
 
651
 
652
/* Objects Used In Parsing  */
652
/* Objects Used In Parsing  */
653
extern0 SEXP	R_CommentSxp;	    /* Comments accumulate here */
653
extern0 SEXP	R_CommentSxp;	    /* Comments accumulate here */
654
extern0 int	R_ParseError	INI_as(0); /* Line where parse error occured */
654
extern0 int	R_ParseError	INI_as(0); /* Line where parse error occurred */
-
 
655
extern0 int	R_ParseErrorCol;    /* Column of start of token where parse error occurred */
655
extern0 SEXP	R_ParseErrorFile;   /* Source file where parse error was seen */
656
extern0 SEXP	R_ParseErrorFile;   /* Source file where parse error was seen */
656
#define PARSE_ERROR_SIZE 256	    /* Parse error messages saved here */
657
#define PARSE_ERROR_SIZE 256	    /* Parse error messages saved here */
657
extern0 char	R_ParseErrorMsg[PARSE_ERROR_SIZE] INI_as("");
658
extern0 char	R_ParseErrorMsg[PARSE_ERROR_SIZE] INI_as("");
658
#define PARSE_CONTEXT_SIZE 256	    /* Recent parse context kept in a circular buffer */
659
#define PARSE_CONTEXT_SIZE 256	    /* Recent parse context kept in a circular buffer */
659
extern0 char	R_ParseContext[PARSE_CONTEXT_SIZE] INI_as("");
660
extern0 char	R_ParseContext[PARSE_CONTEXT_SIZE] INI_as("");
660
extern0 int	R_ParseContextLast INI_as(0); /* last character in context buffer */
661
extern0 int	R_ParseContextLast INI_as(0); /* last character in context buffer */
-
 
662
extern0 int	R_ParseContextLine; /* Line in file of the above */
661
 
663
 
662
/* Image Dump/Restore */
664
/* Image Dump/Restore */
663
extern int	R_DirtyImage	INI_as(0);	/* Current image dirty */
665
extern int	R_DirtyImage	INI_as(0);	/* Current image dirty */
664
 
666
 
665
/* History */
667
/* History */