diff options
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/lispref/loading.texi | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/doc/lispref/loading.texi b/doc/lispref/loading.texi index 3261e6d1888..fdd8af1d095 100644 --- a/doc/lispref/loading.texi +++ b/doc/lispref/loading.texi | |||
| @@ -1170,10 +1170,13 @@ extension, a.k.a.@: ``suffix''. This suffix is platform-dependent. | |||
| 1170 | 1170 | ||
| 1171 | @defvar module-file-suffix | 1171 | @defvar module-file-suffix |
| 1172 | This variable holds the system-dependent value of the file-name | 1172 | This variable holds the system-dependent value of the file-name |
| 1173 | extension of the module files. Its value is @file{.so} on POSIX hosts | 1173 | extension of the module files. Its value is @file{.so} on POSIX |
| 1174 | and @file{.dll} on MS-Windows. | 1174 | hosts, @file{.dylib} on macOS, and @file{.dll} on MS-Windows. |
| 1175 | @end defvar | 1175 | @end defvar |
| 1176 | 1176 | ||
| 1177 | On macOS, dynamic modules can also have the suffix @file{.so} in | ||
| 1178 | addition to @file{.dylib}. | ||
| 1179 | |||
| 1177 | @findex emacs_module_init | 1180 | @findex emacs_module_init |
| 1178 | @vindex plugin_is_GPL_compatible | 1181 | @vindex plugin_is_GPL_compatible |
| 1179 | Every dynamic module should export a C-callable function named | 1182 | Every dynamic module should export a C-callable function named |