File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 111111#define PARSE_ERROR_SIZE 256 /* Parse error messages saved here */
112112#define PARSE_CONTEXT_SIZE 256 /* Recent parse context kept in a circular buffer */
113113
114- static bool busy = false ;
114+ static Rboolean busy = FALSE ;
115115static SEXP R_NullSymbol = NULL ;
116116
117117static int identifier ;
@@ -254,12 +254,12 @@ static SEXP NewList(void);
254254static void NextArg (SEXP , SEXP , SEXP ); /* add named element to list end */
255255static SEXP TagArg (SEXP , SEXP , YYLTYPE * );
256256static int processLineDirective (int * );
257- static bool checkForPlaceholder (SEXP placeholder , SEXP arg );
257+ static bool checkForPlaceholder (SEXP placeholder , SEXP arg );
258258
259- static int HavePlaceholder = FALSE; // could be bool
259+ static int HavePlaceholder = FALSE;
260260attribute_hidden SEXP R_PlaceholderToken = NULL ;
261261
262- static int HavePipeBind = FALSE; // could be bool
262+ static int HavePipeBind = FALSE;
263263static SEXP R_PipeBindSymbol = NULL ;
264264
265265/* These routines allocate constants */
Original file line number Diff line number Diff line change @@ -186,7 +186,7 @@ static SEXP NewList(void);
186186static void NextArg (SEXP, SEXP, SEXP); /* add named element to list end */
187187static SEXP TagArg (SEXP, SEXP, YYLTYPE *);
188188static int processLineDirective (int *);
189- static int checkForPlaceholder (SEXP placeholder, SEXP arg);
189+ static bool checkForPlaceholder (SEXP placeholder, SEXP arg);
190190
191191static int HavePlaceholder = FALSE ;
192192attribute_hidden SEXP R_PlaceholderToken = NULL ;
You can’t perform that action at this time.
0 commit comments