diff options
author | Andrea Corallo <akrl@sdf.org> | 2020-05-24 21:59:25 +0100 |
---|---|---|
committer | Andrea Corallo <akrl@sdf.org> | 2020-05-24 21:59:25 +0100 |
commit | 0bba0e367b4b5378501de7c91838ea2de8b4af4a (patch) | |
tree | 4e47cc7a901115be9b954d033031cb539c19f1ec /src/comp.h | |
parent | 1bc558b77e648efa905076f793d28fc0f025ae50 (diff) | |
download | emacs-0bba0e367b4b5378501de7c91838ea2de8b4af4a.tar.gz emacs-0bba0e367b4b5378501de7c91838ea2de8b4af4a.tar.bz2 emacs-0bba0e367b4b5378501de7c91838ea2de8b4af4a.zip |
Fix GNU style
* src/comp.h: Fix GNU style.
* src/comp.c (Fcomp__compile_ctxt_to_file): Likewise.
* lisp/emacs-lisp/comp.el (comp--replace-output-file): Likewise.
* src/pdumper.c (dump_do_dump_relocation): Likewise.
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 #ifdef WINDOWSNT /* We need to store a copy of the original file name in memory that is not subject to GC because the function to dispose native - compilation units is called by the GC. By that time the `file' + compilation units is called by the GC. By that time the `file' string may have been sweeped. */ - char * cfile; + char *cfile; #endif }; @@ -92,7 +92,8 @@ extern void syms_of_comp (void); extern void maybe_defer_native_compilation (Lisp_Object function_name, Lisp_Object definition); -extern void dispose_comp_unit (struct Lisp_Native_Comp_Unit * comp_unit, bool delay); +extern void dispose_comp_unit (struct Lisp_Native_Comp_Unit * comp_unit, + bool delay); extern void finish_delayed_disposal_of_comp_units (void); |