diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/lread.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lread.c b/src/lread.c index 5fd52feb376..56717dba810 100644 --- a/src/lread.c +++ b/src/lread.c | |||
| @@ -1675,7 +1675,9 @@ maybe_swap_for_eln (bool no_native, Lisp_Object *filename, int *fd) | |||
| 1675 | FOR_EACH_TAIL_SAFE (eln_path_tail) | 1675 | FOR_EACH_TAIL_SAFE (eln_path_tail) |
| 1676 | { | 1676 | { |
| 1677 | Lisp_Object eln_name = | 1677 | Lisp_Object eln_name = |
| 1678 | Fexpand_file_name (eln_rel_name, XCAR (eln_path_tail)); | 1678 | Fexpand_file_name (eln_rel_name, |
| 1679 | Fexpand_file_name (Vcomp_native_version_dir, | ||
| 1680 | XCAR (eln_path_tail))); | ||
| 1679 | int eln_fd = emacs_open (SSDATA (ENCODE_FILE (eln_name)), O_RDONLY, 0); | 1681 | int eln_fd = emacs_open (SSDATA (ENCODE_FILE (eln_name)), O_RDONLY, 0); |
| 1680 | 1682 | ||
| 1681 | if (eln_fd > 0) | 1683 | if (eln_fd > 0) |