aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorStefan Kangas2021-04-27 18:54:37 +0200
committerStefan Kangas2021-04-27 18:54:37 +0200
commit233c0af31e2c018043bd9abfa5acbeafbb535a94 (patch)
treeeca3bcbc8d1d8d588f8b51ebbc996263c426d9b1 /src
parentd8e037eeaa7eef26349bc0fb3fa00e10a5c4b894 (diff)
downloademacs-233c0af31e2c018043bd9abfa5acbeafbb535a94.tar.gz
emacs-233c0af31e2c018043bd9abfa5acbeafbb535a94.zip
; Fix typos
Diffstat (limited to 'src')
-rw-r--r--src/comp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/comp.c b/src/comp.c
index 5309be46dec..c2da5b2ebf5 100644
--- a/src/comp.c
+++ b/src/comp.c
@@ -1,4 +1,4 @@
1/* Compile elisp into native code. 1/* Compile Emacs Lisp into native code.
2 Copyright (C) 2019-2021 Free Software Foundation, Inc. 2 Copyright (C) 2019-2021 Free Software Foundation, Inc.
3 3
4Author: Andrea Corallo <akrl@sdf.org> 4Author: Andrea Corallo <akrl@sdf.org>
@@ -4716,7 +4716,7 @@ maybe_defer_native_compilation (Lisp_Object function_name,
4716 return; 4716 return;
4717 } 4717 }
4718 4718
4719 /* This is to have deferred compilaiton able to compile comp 4719 /* This is to have deferred compilation able to compile comp
4720 dependencies breaking circularity. */ 4720 dependencies breaking circularity. */
4721 if (!NILP (Ffeaturep (Qcomp, Qnil))) 4721 if (!NILP (Ffeaturep (Qcomp, Qnil)))
4722 { 4722 {
@@ -4949,7 +4949,7 @@ load_comp_unit (struct Lisp_Native_Comp_Unit *comp_u, bool loading_dump,
4949 /* In case another load of the same CU is active on the stack 4949 /* In case another load of the same CU is active on the stack
4950 all ephemeral data is hold by that frame. Re-writing 4950 all ephemeral data is hold by that frame. Re-writing
4951 'data_ephemeral_vec' would be not only a waste of cycles but 4951 'data_ephemeral_vec' would be not only a waste of cycles but
4952 more importanly would lead to crashed if the contained data 4952 more importantly would lead to crashed if the contained data
4953 is not cons hashed. */ 4953 is not cons hashed. */
4954 if (!recursive_load) 4954 if (!recursive_load)
4955 { 4955 {