Fix bug in module_free_global_ref (Bug#27587)
* src/emacs-module.c (module_free_global_ref): Actually remove entry from hash table. Copyright-paperwork-exempt: yes
This commit is contained in:
parent
bb2ea81bc5
commit
22af69906c
1 changed files with 1 additions and 1 deletions
|
@ -328,7 +328,7 @@ module_free_global_ref (emacs_env *env, emacs_value ref)
|
|||
set_hash_value_slot (h, i, value);
|
||||
}
|
||||
else
|
||||
hash_remove_from_table (h, value);
|
||||
hash_remove_from_table (h, obj);
|
||||
}
|
||||
|
||||
if (module_assertions)
|
||||
|
|
Loading…
Add table
Reference in a new issue