The R Project SVN R

Rev

Rev 89802 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 89802 Rev 89808
Line 44... Line 44...
44
SA_TYPE	RestoreAction = SA_RESTORE;
44
SA_TYPE	RestoreAction = SA_RESTORE;
45
attribute_hidden bool LoadInitFile = true;  /* Used in R_OpenInitFile */
45
attribute_hidden bool LoadInitFile = true;  /* Used in R_OpenInitFile */
46
 
46
 
47
/* API for reading and changing SaveAction */
47
/* API for reading and changing SaveAction */
48
SA_TYPE R_GetSaveAction(void) { return SaveAction; }
48
SA_TYPE R_GetSaveAction(void) { return SaveAction; }
49
SA_TYPE R_SetSaveAction(SA_TYPE new)
49
SA_TYPE R_SetSaveAction(SA_TYPE newval)
50
{
50
{
51
    SA_TYPE old = SaveAction;
51
    SA_TYPE oldval = SaveAction;
52
    SaveAction = new;
52
    SaveAction = newval;
53
    return old;
53
    return oldval;
54
}
54
}
55
 
55
 
56
static bool LoadSiteFile = true;
56
static bool LoadSiteFile = true;
57
// static bool DebugInitFile = false; // unused
57
// static bool DebugInitFile = false; // unused
58
 
58