From: Eshel Yaron via "Bug reports for GNU Emacs, the Swiss army knife of text editors" <bug-gnu-emacs@gnu.org>
To: Eli Zaretskii <eliz@gnu.org>
Cc: steven@stebalien.com, 74511@debbugs.gnu.org
Subject: bug#74511: 31.0.50; `dictionary-search-interface' overrides the user's customization of `dictionary-read-word-function'
Date: Fri, 29 Nov 2024 07:30:35 +0100 [thread overview]
Message-ID: <m134jar1pw.fsf@macbookpro.home> (raw)
In-Reply-To: <86r06ygnhc.fsf@gnu.org> (Eli Zaretskii's message of "Tue, 26 Nov 2024 14:59:11 +0200")
Hi,
Eli Zaretskii <eliz@gnu.org> writes:
>> From: Eshel Yaron <me@eshelyaron.com>
>> Cc: Eli Zaretskii <eliz@gnu.org>, 74511@debbugs.gnu.org
>> Date: Mon, 25 Nov 2024 22:27:57 +0100
>>
>> Steven Allen <steven@stebalien.com> writes:
>>
>> > Is adding the following to `dictionary-search-interface' not sufficient?
>> >
>> > :initialize 'custom-initialize-changed
>> >
>> > That would apply the `dictionary-search-interface' setting if and only
>> > if specified by the user while still alowing the user to, e.g., use the
>> > customize interface.
>>
>> Ah yes, seems even better than my patch since it also makes it possible
>> to set dictionary-search-interface before loading dictionary.el, thanks!
>>
>> Eli, does this seem OK for the release branch?
>>
>> diff --git a/lisp/net/dictionary.el b/lisp/net/dictionary.el
>> index 58c2e9771ba..42fb8c57b40 100644
>> --- a/lisp/net/dictionary.el
>> +++ b/lisp/net/dictionary.el
>> @@ -317,6 +317,7 @@ dictionary-search-interface
>> dictionary-read-dictionary-function)
>> vals))
>> (set-default-toplevel-value symbol value))
>> + :initialize #'custom-initialize-changed
>> :version "30.1")
>
> Don't you mean custom-initialize-set?
No, I don't: custom-initialize-set calls the :set function if the symbol
does not have a default-toplevel-value, which is when the option is
initialized while loading dictionary.el. So using this :initialize
function does not fix the recipe Steve provided in the original post.
> If I'm missing something, please describe what will happen in the
> various scenarios when dictionary-search-interface and the other
> related options are customized, whether by setq or via Custom, and
> when they are not customized the first time dictionary.el is loaded.
> When we understand all the effects of this, we can reason whether the
> change is safe for the emacs-30 branch (which it better be, since
> these options were introduced in Emacs 30, AFAIR).
With custom-initialize-changed we get the following:
- If you customize the other options but not dictionary-search-interface
before loading dictionary.el, then your settings persist (they are not
overridden) after loading dictionary.el. If you later customize
dictionary-search-interface, then it affects does the other options,
as expected.
- If you do customize dictionary-search-interface before loading
dictionary.el, then it does set the other options when you load
dictionary.el, whether or not you've also set the other options (so it
doesn't make sense to customize both dictionary-search-interface and
the other options, you either customize dictionary-search-interface or
individual options).
So AFAICT it's safe in the sense that it facilitates use cases that
currently do not work (customizing the other options before loading
dictionary.el) without prohibiting any existing use case.
Best,
Eshel
next prev parent reply other threads:[~2024-11-29 6:30 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-24 18:56 bug#74511: 31.0.50; `dictionary-search-interface' overrides the user's customization of `dictionary-read-word-function' Steven Allen via Bug reports for GNU Emacs, the Swiss army knife of text editors
2024-11-24 19:03 ` Eli Zaretskii
2024-11-24 20:36 ` Steven Allen via Bug reports for GNU Emacs, the Swiss army knife of text editors
2024-11-25 12:04 ` Eli Zaretskii
2024-11-25 18:17 ` Eshel Yaron via Bug reports for GNU Emacs, the Swiss army knife of text editors
2024-11-25 19:27 ` Steven Allen via Bug reports for GNU Emacs, the Swiss army knife of text editors
2024-11-25 21:27 ` Eshel Yaron via Bug reports for GNU Emacs, the Swiss army knife of text editors
2024-11-26 12:59 ` Eli Zaretskii
2024-11-29 6:30 ` Eshel Yaron via Bug reports for GNU Emacs, the Swiss army knife of text editors [this message]
2024-11-30 11:02 ` Eli Zaretskii
2024-11-30 12:09 ` Eshel Yaron via Bug reports for GNU Emacs, the Swiss army knife of text editors
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=m134jar1pw.fsf@macbookpro.home \
--to=bug-gnu-emacs@gnu.org \
--cc=74511@debbugs.gnu.org \
--cc=eliz@gnu.org \
--cc=me@eshelyaron.com \
--cc=steven@stebalien.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.