diff options
| author | Andrea Corallo | 2020-05-10 08:58:53 +0100 |
|---|---|---|
| committer | Andrea Corallo | 2020-05-10 09:34:21 +0100 |
| commit | 49def706f361754a3e374c105328a3eec892beff (patch) | |
| tree | 70b20420bead6267d054ac146a6f10885c6391fa /src | |
| parent | bc50c0c57eca22cb290465ae5df93d48326eeb05 (diff) | |
| download | emacs-49def706f361754a3e374c105328a3eec892beff.tar.gz emacs-49def706f361754a3e374c105328a3eec892beff.zip | |
* src/comp.c (load_comp_unit): Style fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/comp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/comp.c b/src/comp.c index 768172b3aa1..e3a80adfa95 100644 --- a/src/comp.c +++ b/src/comp.c | |||
| @@ -3564,7 +3564,7 @@ load_comp_unit (struct Lisp_Native_Comp_Unit *comp_u, bool loading_dump, | |||
| 3564 | Lisp_Object *saved_cu = dynlib_sym (handle, COMP_UNIT_SYM); | 3564 | Lisp_Object *saved_cu = dynlib_sym (handle, COMP_UNIT_SYM); |
| 3565 | if (!saved_cu) | 3565 | if (!saved_cu) |
| 3566 | xsignal1 (Qnative_lisp_file_inconsistent, comp_u->file); | 3566 | xsignal1 (Qnative_lisp_file_inconsistent, comp_u->file); |
| 3567 | bool reloading_cu = !NILP (*saved_cu) ? true : false; | 3567 | bool reloading_cu = !NILP (*saved_cu); |
| 3568 | Lisp_Object *data_eph_relocs = | 3568 | Lisp_Object *data_eph_relocs = |
| 3569 | dynlib_sym (handle, DATA_RELOC_EPHEMERAL_SYM); | 3569 | dynlib_sym (handle, DATA_RELOC_EPHEMERAL_SYM); |
| 3570 | 3570 | ||