diff options
| author | Stefan Kangas | 2021-04-27 18:54:37 +0200 |
|---|---|---|
| committer | Stefan Kangas | 2021-04-27 18:54:37 +0200 |
| commit | 233c0af31e2c018043bd9abfa5acbeafbb535a94 (patch) | |
| tree | eca3bcbc8d1d8d588f8b51ebbc996263c426d9b1 /src | |
| parent | d8e037eeaa7eef26349bc0fb3fa00e10a5c4b894 (diff) | |
| download | emacs-233c0af31e2c018043bd9abfa5acbeafbb535a94.tar.gz emacs-233c0af31e2c018043bd9abfa5acbeafbb535a94.zip | |
; Fix typos
Diffstat (limited to 'src')
| -rw-r--r-- | src/comp.c | 6 |
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 | ||
| 4 | Author: Andrea Corallo <akrl@sdf.org> | 4 | Author: 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 | { |