-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
313ad2f
commit 2d45618
Showing
3 changed files
with
85 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
diff --git a/src/library/profile/Rprofile.unix b/src/library/profile/Rprofile.unix | ||
index f008e68..7783d77 100644 | ||
--- a/src/library/profile/Rprofile.unix | ||
+++ b/src/library/profile/Rprofile.unix | ||
@@ -17,4 +17,4 @@ version <- Version() | ||
options(na.action="na.omit") | ||
options(printcmd=getenv("R_PRINTCMD")) | ||
options(papersize=getenv("R_PAPERSIZE")) | ||
-if(interactive()) x11() | ||
+ | ||
diff --git a/src/unix/system.c b/src/unix/system.c | ||
index d25825f..45c509e 100644 | ||
--- a/src/unix/system.c | ||
+++ b/src/unix/system.c | ||
@@ -256,7 +256,7 @@ int main(int ac, char **av) | ||
#endif | ||
|
||
#ifdef linux | ||
- __setfpucw(_FPU_IEEE); | ||
+ /* __setfpucw(_FPU_IEEE); */ | ||
#endif | ||
|
||
#ifdef HAVE_LIBREADLINE | ||
@@ -323,7 +323,7 @@ qask: | ||
#endif | ||
|
||
#ifdef linux | ||
- __setfpucw(_FPU_DEFAULT); | ||
+ /* __setfpucw(_FPU_DEFAULT); */ | ||
#endif | ||
|
||
exit(0); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
diff --git a/src/library/profile/Rprofile.unix b/src/library/profile/Rprofile.unix | ||
index 97a62fc..ca998c1 100644 | ||
--- a/src/library/profile/Rprofile.unix | ||
+++ b/src/library/profile/Rprofile.unix | ||
@@ -9,4 +9,3 @@ version <- Version() | ||
options(na.action="na.omit") | ||
options(printcmd=getenv("R_PRINTCMD")) | ||
options(papersize=getenv("R_PAPERSIZE")) | ||
-if(interactive()) x11() | ||
diff --git a/src/unix/system.c b/src/unix/system.c | ||
index f217b26..7d7902a 100644 | ||
--- a/src/unix/system.c | ||
+++ b/src/unix/system.c | ||
@@ -256,7 +256,7 @@ int main(int ac, char **av) | ||
#endif | ||
|
||
#ifdef linux | ||
- __setfpucw(_FPU_IEEE); | ||
+ /* __setfpucw(_FPU_IEEE); */ | ||
#endif | ||
|
||
#ifdef HAVE_LIBREADLINE | ||
@@ -323,7 +323,7 @@ qask: | ||
#endif | ||
|
||
#ifdef linux | ||
- __setfpucw(_FPU_DEFAULT); | ||
+ /* __setfpucw(_FPU_DEFAULT); */ | ||
#endif | ||
|
||
exit(0); |