Skip to content

Commit 8e8eedb

Browse files
author
pd
committed
maintainer-mode changes
git-svn-id: https://svn.r-project.org/R/trunk@87955 00db46b3-68df-0310-9c12-caf00c1e9a41
1 parent 599388d commit 8e8eedb

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/main/gram.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@
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;
115115
static SEXP R_NullSymbol = NULL;
116116

117117
static int identifier ;
@@ -254,12 +254,12 @@ static SEXP NewList(void);
254254
static void NextArg(SEXP, SEXP, SEXP); /* add named element to list end */
255255
static SEXP TagArg(SEXP, SEXP, YYLTYPE *);
256256
static 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;
260260
attribute_hidden SEXP R_PlaceholderToken = NULL;
261261

262-
static int HavePipeBind = FALSE; // could be bool
262+
static int HavePipeBind = FALSE;
263263
static SEXP R_PipeBindSymbol = NULL;
264264

265265
/* These routines allocate constants */

src/main/gram.y

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ static SEXP NewList(void);
186186
static void NextArg(SEXP, SEXP, SEXP); /* add named element to list end */
187187
static SEXP TagArg(SEXP, SEXP, YYLTYPE *);
188188
static int processLineDirective(int *);
189-
static int checkForPlaceholder(SEXP placeholder, SEXP arg);
189+
static bool checkForPlaceholder(SEXP placeholder, SEXP arg);
190190

191191
static int HavePlaceholder = FALSE;
192192
attribute_hidden SEXP R_PlaceholderToken = NULL;

0 commit comments

Comments
 (0)