diff options
| author | Andrea Corallo | 2019-12-19 11:06:38 +0100 |
|---|---|---|
| committer | Andrea Corallo | 2020-01-01 11:38:13 +0100 |
| commit | b3cbdfc86474932e4ef8d1237ed100a6f4f4c854 (patch) | |
| tree | 000694222e8dbb47e9385e47669269007df24836 /src/pdumper.c | |
| parent | a647a97320e72db275a05961ae09e487ee3063e2 (diff) | |
| download | emacs-b3cbdfc86474932e4ef8d1237ed100a6f4f4c854.tar.gz emacs-b3cbdfc86474932e4ef8d1237ed100a6f4f4c854.zip | |
add basic compilation unit into structure
Diffstat (limited to 'src/pdumper.c')
| -rw-r--r-- | src/pdumper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pdumper.c b/src/pdumper.c index 38b70146b4f..24698d48b57 100644 --- a/src/pdumper.c +++ b/src/pdumper.c | |||
| @@ -2938,7 +2938,7 @@ dump_subr (struct dump_context *ctx, const struct Lisp_Subr *subr) | |||
| 2938 | dump_field_emacs_ptr (ctx, &out, subr, &subr->intspec); | 2938 | dump_field_emacs_ptr (ctx, &out, subr, &subr->intspec); |
| 2939 | DUMP_FIELD_COPY (&out, subr, doc); | 2939 | DUMP_FIELD_COPY (&out, subr, doc); |
| 2940 | #ifdef HAVE_NATIVE_COMP | 2940 | #ifdef HAVE_NATIVE_COMP |
| 2941 | DUMP_FIELD_COPY (&out, subr, native_elisp); | 2941 | dump_field_emacs_ptr (ctx, &out, subr, &subr->native_comp_u); |
| 2942 | #endif | 2942 | #endif |
| 2943 | return dump_object_finish (ctx, &out, sizeof (out)); | 2943 | return dump_object_finish (ctx, &out, sizeof (out)); |
| 2944 | } | 2944 | } |