diff options
| author | Alexander Gramiak | 2017-10-09 14:22:58 -0600 |
|---|---|---|
| committer | Alexander Gramiak | 2017-10-09 14:30:29 -0600 |
| commit | 0485aa76c94643489f5ba99e450648f87498f0b4 (patch) | |
| tree | 069cd09fccae9d72deb934ba60c618486f35de19 /src | |
| parent | ba7fb37d6a0ad59d8ca600b4186016da3d941750 (diff) | |
| download | emacs-0485aa76c94643489f5ba99e450648f87498f0b4.tar.gz emacs-0485aa76c94643489f5ba99e450648f87498f0b4.zip | |
; * src/lread.c (syms_of_lread) <module-file-suffix>: Fix typo
Diffstat (limited to 'src')
| -rw-r--r-- | src/lread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lread.c b/src/lread.c index 6bc93b14817..33da8667228 100644 --- a/src/lread.c +++ b/src/lread.c | |||
| @@ -4834,7 +4834,7 @@ to the specified file name if a suffix is allowed or required. */); | |||
| 4834 | build_pure_c_string (".el")); | 4834 | build_pure_c_string (".el")); |
| 4835 | #endif | 4835 | #endif |
| 4836 | DEFVAR_LISP ("module-file-suffix", Vmodule_file_suffix, | 4836 | DEFVAR_LISP ("module-file-suffix", Vmodule_file_suffix, |
| 4837 | doc: /* Suffix of loadable module file, or nil of modules are not supported. */); | 4837 | doc: /* Suffix of loadable module file, or nil if modules are not supported. */); |
| 4838 | #ifdef HAVE_MODULES | 4838 | #ifdef HAVE_MODULES |
| 4839 | Vmodule_file_suffix = build_pure_c_string (MODULES_SUFFIX); | 4839 | Vmodule_file_suffix = build_pure_c_string (MODULES_SUFFIX); |
| 4840 | #else | 4840 | #else |