From: Jonas Bernoulli <jonas@bernoul.li>
To: Stefan Monnier <monnier@iro.umontreal.ca>
Cc: emacs-devel@gnu.org
Subject: Re: [elpa] externals/transient 667ce2b287 18/23: Use transient-default-value in transient-init-value(suffix)
Date: Thu, 26 Dec 2024 15:34:55 +0100 [thread overview]
Message-ID: <87wmfmikc0.fsf@bernoul.li> (raw)
In-Reply-To: <jwv1pxvg8b5.fsf-monnier+emacs@gnu.org>
Stefan Monnier <monnier@iro.umontreal.ca> writes:
> Hi Jonas,
>
>> --- a/lisp/transient.el
>> +++ b/lisp/transient.el
>> @@ -3331,9 +3331,13 @@ Use `transient-default-value' to determine the default value."
>> (cdr saved)
>> (transient-default-value obj)))))
>>
>> -(cl-defmethod transient-init-value ((_ transient-suffix))
>> - "Non-infix suffixes usually don't have a value, so this is a noop."
>> - nil)
>> +(cl-defmethod transient-init-value ((obj transient-suffix))
>> + "Non-infix suffixes usually don't have a value.
>> +Call `transient-default-value' but because that is a noop for
>> +`transient-suffix', this function is effectively also a noop."
>> + (let ((value (transient-default-value obj)))
>> + (unless (eq value eieio--unbound)
>> + (oset obj value value))))
>>
>> (cl-defmethod transient-init-value ((obj transient-argument))
>> "Extract OBJ's value from the value of the prefix object."
>> @@ -3379,6 +3383,11 @@ that. If the slot is unbound, return nil."
>> default)
>> nil))
>>
>> +(cl-defmethod transient-default-value ((_ transient-suffix))
>> + "Return `eieio--unbound' to indicate that there is no default value.
>> +Doing so causes `transient-init-value' to skip setting the `value' slot."
>> + eieio--unbound)
>> +
>> ;;;; Read
>>
>> (cl-defgeneric transient-infix-read (obj)
>
> Why use `eieio--unbound` (i.e. a variable internal to EIEIO) rather than
> your own magic placeholder?
I first used `eieio--unbound' "manually" (in another package), when it
was still named `eieio-unbound'. When you made that breaking change,
I quickly added the necessary backward compatibility alias to that
package. I have (in a later) commit done the same here. (I briefly
forgot that this is not the package in which I had already been using
this symbol. This may have contributed to me using this symbol here;
I though I was already using it.)
The reason I am using Eieio's "this is not bound", is that I am doing an
Eieio thing here. It's not a "not bound" slot but the "not bound"
return value of a generic function, which isn't the same thing, but
pretty damn close.
Sure I can invent a new symbol just for this one case, but it would be
(IMO unnecessary) noise and the only reasons I would be doing it is to
make you happy and to avoid having a conversation about it.
> IOW, is there a good reason to break the abstraction here?
I am not sure what "the abstraction" and "here" refer to exactly.
next prev parent reply other threads:[~2024-12-26 14:34 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <173487507772.3820862.14263838078882905942@vcs3.savannah.gnu.org>
[not found] ` <20241222134440.C5563C5C27C@vcs3.savannah.gnu.org>
2024-12-25 14:14 ` [elpa] externals/transient 667ce2b287 18/23: Use transient-default-value in transient-init-value(suffix) Stefan Monnier
2024-12-26 14:34 ` Jonas Bernoulli [this message]
2024-12-27 18:06 ` Stefan Monnier
2024-12-27 19:09 ` Jonas Bernoulli
2024-12-28 3:15 ` Stefan Monnier
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
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87wmfmikc0.fsf@bernoul.li \
--to=jonas@bernoul.li \
--cc=emacs-devel@gnu.org \
--cc=monnier@iro.umontreal.ca \
/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 public inbox
https://git.savannah.gnu.org/cgit/emacs.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).