diff options
| author | Aurélien Aptel | 2014-12-02 16:17:10 -0500 |
|---|---|---|
| committer | Ted Zlatanov | 2014-12-04 19:54:16 -0500 |
| commit | ae901ddbfff04e8b1b0d63c452a6ca3f4c81fb17 (patch) | |
| tree | b806504944c633be45255321d1203bbcc2504781 /modules/ChangeLog | |
| parent | dd601050e7db69f322eea09d99751d8e6363b153 (diff) | |
| download | emacs-old-branches/dynamic-modules-rc2.tar.gz emacs-old-branches/dynamic-modules-rc2.zip | |
Add external modulesold-branches/dynamic-modules-rc2
* configure.ac: Add libtool support and module Makefiles.
* src/Makefile.in: Support libtool.
* src/alloc.c (mark_object): Mark the doc field of Lisp_Subr as object.
* src/doc.c (doc_is_from_module_p, get_doc_string, reread_doc_file)
(store_function_docstring, build_file_p, Fsnarf_documentation):
Support docstrings for external modules.
* src/lisp.h: Make the doc field of Lisp_Subr a Lisp_Object.
* src/lread.c (Fget_load_suffixes, Fload_module, string_suffixes_p)
(string_suffix_p, Fload, intern_c_string_1, defsubr)
(syms_of_lread): Add loading of external modules and the
docstrings of their functions.
* modules/curl: New module.
* modules/elisp: New module.
* modules/fmod: New module.
* modules/opaque: New module.
* modules/yaml: New module.
Diffstat (limited to 'modules/ChangeLog')
| -rw-r--r-- | modules/ChangeLog | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/modules/ChangeLog b/modules/ChangeLog new file mode 100644 index 00000000000..180d48e5bc4 --- /dev/null +++ b/modules/ChangeLog | |||
| @@ -0,0 +1,11 @@ | |||
| 1 | 2014-12-02 Aurélien Aptel <aurelien.aptel@gmail.com> | ||
| 2 | |||
| 3 | * curl: Add new module. | ||
| 4 | |||
| 5 | * elisp: Add new module. | ||
| 6 | |||
| 7 | * fmod: Add new module. | ||
| 8 | |||
| 9 | * yaml: Add new module. | ||
| 10 | |||
| 11 | * opaque: Add new module. | ||