branch: externals/dict-tree commit 913c84bec7e54ad9307cccdbbdec89d5c16c6c55 Author: Toby S. Cubitt <toby-predict...@dr-qubit.org> Commit: Toby S. Cubitt <toby-predict...@dr-qubit.org>
Fix bug in dictree-unload. --- dict-tree.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dict-tree.el b/dict-tree.el index 18a87b3..c8359e6 100644 --- a/dict-tree.el +++ b/dict-tree.el @@ -3322,7 +3322,7 @@ is the prefix argument." ;; remove dictionary from list of loaded dictionaries and unload it (setq dictree-loaded-list (delq dict dictree-loaded-list)) ;; We used `unintern' here before, but that's too dangerous! - (makunbound (dictree-name dict)) + (makunbound (intern (dictree-name dict))) (message "Dictionary %s unloaded" (dictree-name dict)))