diff options
| author | Andrea Corallo | 2019-12-22 08:12:27 +0100 |
|---|---|---|
| committer | Andrea Corallo | 2020-01-01 11:38:14 +0100 |
| commit | 4c8b46514d87856e5e2044bce804ad0156097d04 (patch) | |
| tree | d4c444d96c8ae5a75404a302e4c15d13a55de5aa /src/alloc.c | |
| parent | c5bb62f99db4b1c70e68e7c7a30ede8227f199a3 (diff) | |
| download | emacs-4c8b46514d87856e5e2044bce804ad0156097d04.tar.gz emacs-4c8b46514d87856e5e2044bce804ad0156097d04.zip | |
some rename on compilation unit struct
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/alloc.c b/src/alloc.c index 547990c7a9e..d47f9c8a574 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -3026,8 +3026,8 @@ cleanup_vector (struct Lisp_Vector *vector) | |||
| 3026 | #ifdef HAVE_NATIVE_COMP | 3026 | #ifdef HAVE_NATIVE_COMP |
| 3027 | else if (PSEUDOVECTOR_TYPEP (&vector->header, PVEC_NATIVE_COMP_UNIT)) | 3027 | else if (PSEUDOVECTOR_TYPEP (&vector->header, PVEC_NATIVE_COMP_UNIT)) |
| 3028 | { | 3028 | { |
| 3029 | struct Lisp_Native_Compilation_Unit *cu = | 3029 | struct Lisp_Native_Comp_Unit *cu = |
| 3030 | PSEUDOVEC_STRUCT (vector, Lisp_Native_Compilation_Unit); | 3030 | PSEUDOVEC_STRUCT (vector, Lisp_Native_Comp_Unit); |
| 3031 | eassert (cu->handle); | 3031 | eassert (cu->handle); |
| 3032 | dynlib_close (cu->handle); | 3032 | dynlib_close (cu->handle); |
| 3033 | } | 3033 | } |
| @@ -6576,7 +6576,7 @@ mark_object (Lisp_Object arg) | |||
| 6576 | case PVEC_NATIVE_COMP_UNIT: | 6576 | case PVEC_NATIVE_COMP_UNIT: |
| 6577 | set_vector_marked (ptr); | 6577 | set_vector_marked (ptr); |
| 6578 | /* FIXME see comp.h. */ | 6578 | /* FIXME see comp.h. */ |
| 6579 | mark_object (XCOMPILATION_UNIT (obj)->data_vec); | 6579 | mark_object (XNATIVE_COMP_UNIT (obj)->data_vec); |
| 6580 | #endif | 6580 | #endif |
| 6581 | break; | 6581 | break; |
| 6582 | case PVEC_FREE: | 6582 | case PVEC_FREE: |