Displaying 1 result from an estimated 1 matches for "rsetconsolewidth".
2004 Apr 18
0
[patch] R-1.9.0: compile error without nl_langinfo(CODESET) (PR#6789)
..._HEADERS on Rmath.h.in because
--- src/main/main.c.old 2004-04-17 15:03:50 +0200
+++ src/main/main.c 2004-04-17 15:22:37 +0200
@@ -37,7 +37,7 @@
# include <locale.h>
#endif
-#ifdef HAVE_LANGINFO_H
+#ifdef HAVE_LANGINFO_CODESET
# include <langinfo.h>
#endif
@@ -459,7 +459,7 @@
RSetConsoleWidth();
}
#endif
-#ifdef HAVE_NL_LANGINFO
+#ifdef HAVE_LANGINFO_CODESET
utf8locale = strcmp(nl_langinfo(CODESET), "UTF-8") == 0;
#endif
/* gc_inhibit_torture = 0; */
--- src/main/platform.c.old 2004-04-17 15:06:04 +0200
+++ src/main/platform.c 2004-04-17 15:22:54 +0200
@@ -886,7...