diff options
Diffstat (limited to 'src/comp.h')
| -rw-r--r-- | src/comp.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/comp.h b/src/comp.h index 18c5ba12298..c6f23dc1468 100644 --- a/src/comp.h +++ b/src/comp.h | |||
| @@ -57,9 +57,9 @@ struct Lisp_Native_Comp_Unit | |||
| 57 | #ifdef WINDOWSNT | 57 | #ifdef WINDOWSNT |
| 58 | /* We need to store a copy of the original file name in memory that | 58 | /* We need to store a copy of the original file name in memory that |
| 59 | is not subject to GC because the function to dispose native | 59 | is not subject to GC because the function to dispose native |
| 60 | compilation units is called by the GC. By that time the `file' | 60 | compilation units is called by the GC. By that time the `file' |
| 61 | string may have been sweeped. */ | 61 | string may have been sweeped. */ |
| 62 | char * cfile; | 62 | char *cfile; |
| 63 | #endif | 63 | #endif |
| 64 | }; | 64 | }; |
| 65 | 65 | ||
| @@ -92,7 +92,8 @@ extern void syms_of_comp (void); | |||
| 92 | extern void maybe_defer_native_compilation (Lisp_Object function_name, | 92 | extern void maybe_defer_native_compilation (Lisp_Object function_name, |
| 93 | Lisp_Object definition); | 93 | Lisp_Object definition); |
| 94 | 94 | ||
| 95 | extern void dispose_comp_unit (struct Lisp_Native_Comp_Unit * comp_unit, bool delay); | 95 | extern void dispose_comp_unit (struct Lisp_Native_Comp_Unit * comp_unit, |
| 96 | bool delay); | ||
| 96 | 97 | ||
| 97 | extern void finish_delayed_disposal_of_comp_units (void); | 98 | extern void finish_delayed_disposal_of_comp_units (void); |
| 98 | 99 | ||