From 0a753603a53622d939661d796eb203908867bb9e Mon Sep 17 00:00:00 2001 From: Eshel Yaron Date: Sat, 30 Nov 2024 12:56:49 +0100 Subject: [PATCH] ; (dictionary-search-interface): Fix bug#74511. * lisp/net/dictionary.el (dictionary-search-interface): During initialization, do not override individual customization of the other options that this option affects (by applying the :set function), unless this option was explicitly set. --- lisp/net/dictionary.el | 1 + 1 file changed, 1 insertion(+) diff --git a/lisp/net/dictionary.el b/lisp/net/dictionary.el index f17dc160997..9c932c0c6d5 100644 --- a/lisp/net/dictionary.el +++ b/lisp/net/dictionary.el @@ -317,6 +317,7 @@ Otherwise, `dictionary-search' displays definitions in a *Dictionary* buffer." dictionary-read-dictionary-function) vals)) (set-default-toplevel-value symbol value)) + :initialize #'custom-initialize-changed :version "30.1") (defface dictionary-word-definition-face -- 2.30.2