mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-03 10:31:37 -08:00
Fix initialization of module functions
* src/emacs-module.c (allocate_module_function): Fix initialization of module functions. Suggested by Richard Copley <rcopley@gmail.com>. (Bug#59104)
This commit is contained in:
parent
f8df45f853
commit
2a7f01aa38
1 changed files with 1 additions and 1 deletions
|
|
@ -561,7 +561,7 @@ static struct Lisp_Module_Function *
|
|||
allocate_module_function (void)
|
||||
{
|
||||
return ALLOCATE_PSEUDOVECTOR (struct Lisp_Module_Function,
|
||||
interactive_form, PVEC_MODULE_FUNCTION);
|
||||
command_modes, PVEC_MODULE_FUNCTION);
|
||||
}
|
||||
|
||||
#define XSET_MODULE_FUNCTION(var, ptr) \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue