Index: trunk/doc/conf/tree/rc.html =================================================================== --- trunk/doc/conf/tree/rc.html (revision 11877) +++ trunk/doc/conf/tree/rc.html (revision 11878) @@ -5,7 +5,7 @@ node name type flags description verbose integer 0 quiet integer 0 print only errors on stderr - backup_interval integer 0 time between two backups in seconds + backup_interval integer 0 time between two backups in seconds; 0 means disabled (no backups) font_command string 0 file name template; if not empty, run this command and read its output for loading the font; %f is the file name file_command string 0 file name template; if not empty, run this command and read its output for loading a pcb file; %f is the file name, %p is the conf setting rc.file_path file_path string 0 Index: trunk/src/conf_core.h =================================================================== --- trunk/src/conf_core.h (revision 11877) +++ trunk/src/conf_core.h (revision 11878) @@ -88,7 +88,7 @@ const struct rc { CFT_INTEGER verbose; CFT_INTEGER quiet; /* print only errors on stderr */ - CFT_INTEGER backup_interval; /* time between two backups in seconds */ + CFT_INTEGER backup_interval; /* time between two backups in seconds; 0 means disabled (no backups) */ CFT_STRING font_command; /* file name template; if not empty, run this command and read its output for loading the font; %f is the file name */ CFT_STRING file_command; /* file name template; if not empty, run this command and read its output for loading a pcb file; %f is the file name, %p is the conf setting rc.file_path */ CFT_STRING file_path;