; * src/lread.c (syms_of_lread) <module-file-suffix>: Fix typo

This commit is contained in:
Alexander Gramiak 2017-10-09 14:22:58 -06:00
parent ba7fb37d6a
commit 0485aa76c9

View file

@ -4834,7 +4834,7 @@ to the specified file name if a suffix is allowed or required. */);
build_pure_c_string (".el"));
#endif
DEFVAR_LISP ("module-file-suffix", Vmodule_file_suffix,
doc: /* Suffix of loadable module file, or nil of modules are not supported. */);
doc: /* Suffix of loadable module file, or nil if modules are not supported. */);
#ifdef HAVE_MODULES
Vmodule_file_suffix = build_pure_c_string (MODULES_SUFFIX);
#else