Skip to content

Commit 60d7992

Browse files
author
ripley
committed
add comments
git-svn-id: https://svn.r-project.org/R/trunk@87865 00db46b3-68df-0310-9c12-caf00c1e9a41
1 parent 5b8cd9f commit 60d7992

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/main/platform.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2572,7 +2572,7 @@ attribute_hidden SEXP do_capabilities(SEXP call, SEXP op, SEXP args, SEXP rho)
25722572
LOGICAL(ans)[i] = TRUE; /* also AQUA ? */
25732573
} else {
25742574
#if defined(HAVE_LIBREADLINE)
2575-
extern Rboolean UsingReadline;
2575+
extern Rboolean UsingReadline; // from ../unix/system.c
25762576
if (R_Interactive && UsingReadline) LOGICAL(ans)[i] = TRUE;
25772577
#endif
25782578
}

src/unix/X11.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ attribute_hidden int R_X11_Init(void)
6262
return initialized;
6363
}
6464

65+
/* used in src/main/platform.c */
6566
attribute_hidden Rboolean R_access_X11(void)
6667
{
6768
R_X11_Init();

0 commit comments

Comments
 (0)