Index: trunk/doc-rnd/hacking/renames =================================================================== --- trunk/doc-rnd/hacking/renames (revision 4984) +++ trunk/doc-rnd/hacking/renames (revision 4985) @@ -652,3 +652,5 @@ set_some_route_style -> pcb_set_some_route_style WritePCBFile -> pcb_write_pcb_file WritePipe -> pcb_write_pipe +SaveTMPData -> pcb_tmp_data_save +RemoveTMPData -> pcb_tmp_data_remove Index: trunk/src/plug_io.c =================================================================== --- trunk/src/plug_io.c (revision 4984) +++ trunk/src/plug_io.c (revision 4985) @@ -723,7 +723,7 @@ * before LEX and YACC functions are called because they are able to abort * the program. */ -void SaveTMPData(void) +void pcb_tmp_data_save(void) { char *fn = pcb_build_fn(conf_core.rc.emergency_name); pcb_write_pcb_file(fn, pcb_true, DEFAULT_FMT, pcb_true); @@ -735,7 +735,7 @@ /* --------------------------------------------------------------------------- * removes the temporary copy of the data file */ -void RemoveTMPData(void) +void pcb_tmp_data_remove(void) { if (TMPFilename != NULL) unlink(TMPFilename); Index: trunk/src/plug_io.h =================================================================== --- trunk/src/plug_io.h (revision 4984) +++ trunk/src/plug_io.h (revision 4985) @@ -117,8 +117,8 @@ int pcb_write_pipe(const char *, pcb_bool, const char *fmt); #ifndef HAS_ATEXIT -void SaveTMPData(void); -void RemoveTMPData(void); +void pcb_tmp_data_save(void); +void pcb_tmp_data_remove(void); #endif /********** helpers **********/ Index: trunk/src_plugins/io_pcb/parse_l.c =================================================================== --- trunk/src_plugins/io_pcb/parse_l.c (revision 4984) +++ trunk/src_plugins/io_pcb/parse_l.c (revision 4985) @@ -2433,9 +2433,9 @@ #if !defined(HAS_ATEXIT) if (PCB && PCB->Data) - SaveTMPData(); + pcb_tmp_data_save(); returncode = pcb_parse(); - RemoveTMPData(); + pcb_tmp_data_remove(); #else returncode = pcb_parse(); #endif Index: trunk/src_plugins/io_pcb/parse_l.l =================================================================== --- trunk/src_plugins/io_pcb/parse_l.l (revision 4984) +++ trunk/src_plugins/io_pcb/parse_l.l (revision 4985) @@ -292,9 +292,9 @@ #if !defined(HAS_ATEXIT) if (PCB && PCB->Data) - SaveTMPData(); + pcb_tmp_data_save(); returncode = pcb_parse(); - RemoveTMPData(); + pcb_tmp_data_remove(); #else returncode = pcb_parse(); #endif