diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/lread.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lread.c b/src/lread.c index bbff21d01d7..a62a42ad1a9 100644 --- a/src/lread.c +++ b/src/lread.c | |||
| @@ -1087,7 +1087,10 @@ Return t if the file exists and loads successfully. */) | |||
| 1087 | /* Don't insist on adding a suffix if FILE already ends with one. */ | 1087 | /* Don't insist on adding a suffix if FILE already ends with one. */ |
| 1088 | if (suffix_p (file, ".el") | 1088 | if (suffix_p (file, ".el") |
| 1089 | || suffix_p (file, ".elc") | 1089 | || suffix_p (file, ".elc") |
| 1090 | || suffix_p (file, MODULES_SUFFIX)) | 1090 | #ifdef HAVE_MODULES |
| 1091 | || suffix_p (file, MODULES_SUFFIX) | ||
| 1092 | #endif | ||
| 1093 | ) | ||
| 1091 | must_suffix = Qnil; | 1094 | must_suffix = Qnil; |
| 1092 | /* Don't insist on adding a suffix | 1095 | /* Don't insist on adding a suffix |
| 1093 | if the argument includes a directory name. */ | 1096 | if the argument includes a directory name. */ |