Closed aruZeta closed 2 years ago
Thanks. Could you sign the Emacs Copyright assignment such that I can merge your fix (after rebase)?
First time doing this, so I have to send a mail to emacs-devel@gnu.org to sign it or how?
Yes, see for example here: https://lists.gnu.org/archive/html/emacs-devel/2021-12/msg00806.html
Forgot to update you, I sent the signed pdf form like 2 weeks ago (it took some time to get the response), yet still waiting for them to sign it too.
Any news since? Also, you 'll need to rebase your PR I think.
"Nicolas P. Rougier" @.***> writes:
Any news since? Also, you 'll need to rebase your PR I think.
— Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you authored the thread.
Still no news ... When the process finishes I will do the rebase
-- Alberto (a.k.a. aru)
Still no news ? That's quite an unusual long time. You may have to ask again.
Sorry, wrong button.
Yep, no news, I will send the email again.
Finally received the email. Checking the conflicts so you can merge.
There it goes.
At last! Thanks!
Just some minor refactor for better readability.
Use
when
when there is no else part in anif
.When the above is applied, use
unless
if you have a(when (not cond) (stuff))
which would look(unless cond (stuff))
.Also removing unnecessary
if
and aligning the else part of anif
.