summaryrefslogtreecommitdiff
path: root/src/comp.h
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2021-04-17 16:49:16 +0300
committerEli Zaretskii <eliz@gnu.org>2021-04-17 16:49:16 +0300
commit9aa5203b542f0c9ea7d074c6cfde2a28b466f5d1 (patch)
tree0eb9faeeb7b1881aafca2795036e1989dae9d35d /src/comp.h
parentf9c1008ced59f003d48dd7be39e9ec4aa0f02484 (diff)
downloademacs-9aa5203b542f0c9ea7d074c6cfde2a28b466f5d1.tar.gz
emacs-9aa5203b542f0c9ea7d074c6cfde2a28b466f5d1.tar.bz2
emacs-9aa5203b542f0c9ea7d074c6cfde2a28b466f5d1.zip
Fix loading *.eln files when Emacs is installed via symlinks
* src/emacs.c (real_filename, set_invocation_vars) (init_vars_for_load): Functions deleted; callers adjusted. (init_cmdargs): Put back all the code which was extracted into set_invocation_vars. (load_pdump_find_executable): Make sure the return value has any symlinks in it expanded. (load_pdump): Accept only 2 arguments, not 3. Determine both the file name of the Emacs executable and of the dump file in synchronized manner, so that if we decided to look for the dump file in its hardcoded installation directory, the directory of the Emacs executable will also be where we expect it to be installed. Pass only 2 arguments to pdumper_load. (Bug#47800) (Bug#44128) * src/pdumper.c (dump_do_dump_relocation): Use emacs_execdir instead of Vinvocation_directory to produce absolute file names of *.eln files that are recorded in the pdumper file. Pass the full .eln file name to fixup_eln_load_path. (pdumper_set_emacs_execdir) [HAVE_NATIVE_COMP]: New function. (pdumper_load) [HAVE_NATIVE_COMP]: Call pdumper_set_emacs_execdir. * src/comp.c (fixup_eln_load_path): Use Fsubstring_no_properties instead of Fsubstring. No need to cons a file name, as the caller already did that. Use explicit const string to avoid "magic" values. * lisp/startup.el (normal-top-level): Use expand-file-name instead of concat. Decode comp-eln-load-path and expand-file-name its members.
Diffstat (limited to 'src/comp.h')
-rw-r--r--src/comp.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/comp.h b/src/comp.h
index e17b843d139..03d22dfaa0e 100644
--- a/src/comp.h
+++ b/src/comp.h
@@ -34,7 +34,11 @@ enum {
struct Lisp_Native_Comp_Unit
{
union vectorlike_header header;
- /* Original eln file loaded. */
+ /* The original eln file loaded. In the pdumper file this is stored
+ as a cons cell of 2 alternative file names: the car is the
+ filename relative to the directory of an installed binary, the
+ cdr is the filename relative to the directory of an uninstalled
+ binary. This is arranged in loadup.el. */
Lisp_Object file;
Lisp_Object optimize_qualities;
/* Guard anonymous lambdas against Garbage Collection and serve