The R Project SVN R

Rev

Rev 44199 | Rev 45475 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 44199 Rev 45053
Line 67... Line 67...
67
static char rhome[] = R_HOME;
67
static char rhome[] = R_HOME;
68
#else
68
#else
69
# include "rterm.c"
69
# include "rterm.c"
70
#endif
70
#endif
71
 
71
 
72
#define RSVERSION "$Rev: 44199 $"
72
#define RSVERSION "$Rev: 45053 $"
73
 
73
 
74
#ifdef HAVE_EXECV
74
#ifdef HAVE_EXECV
75
static int verbose = 0;
75
static int verbose = 0;
76
#endif
76
#endif
77
 
77
 
Line 87... Line 87...
87
    fprintf(stderr, "                        of package names, or 'NULL'\n");
87
    fprintf(stderr, "                        of package names, or 'NULL'\n");
88
    fprintf(stderr, "or options to R, in addition to --slave --no-restore, such as\n");
88
    fprintf(stderr, "or options to R, in addition to --slave --no-restore, such as\n");
89
    fprintf(stderr, "  --save              Do save workspace at the end of the session\n");
89
    fprintf(stderr, "  --save              Do save workspace at the end of the session\n");
90
    fprintf(stderr, "  --no-environ        Don't read the site and user environment files\n");
90
    fprintf(stderr, "  --no-environ        Don't read the site and user environment files\n");
91
    fprintf(stderr, "  --no-site-file      Don't read the site-wide Rprofile\n");
91
    fprintf(stderr, "  --no-site-file      Don't read the site-wide Rprofile\n");
92
    fprintf(stderr, "  --no-init-file      Don't read the .Rprofile or ~/.Rprofile files\n");
92
    fprintf(stderr, "  --no-init-file      Don't read the user R profile\n");
93
    fprintf(stderr, "  --restore           Do restore previously saved objects at startup\n");
93
    fprintf(stderr, "  --restore           Do restore previously saved objects at startup\n");
94
    fprintf(stderr, "  --vanilla           Combine --no-save, --no-restore, --no-site-file\n");
94
    fprintf(stderr, "  --vanilla           Combine --no-save, --no-restore, --no-site-file\n");
95
    fprintf(stderr, "                        --no-init-file and --no-environ\n");
95
    fprintf(stderr, "                        --no-init-file and --no-environ\n");
96
}
96
}
97
 
97