summaryrefslogtreecommitdiff
path: root/src/comp.h
diff options
context:
space:
mode:
authorAndrea Corallo <akrl@sdf.org>2020-05-24 21:59:25 +0100
committerAndrea Corallo <akrl@sdf.org>2020-05-24 21:59:25 +0100
commit0bba0e367b4b5378501de7c91838ea2de8b4af4a (patch)
tree4e47cc7a901115be9b954d033031cb539c19f1ec /src/comp.h
parent1bc558b77e648efa905076f793d28fc0f025ae50 (diff)
downloademacs-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.h7
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);