On Tue, 5 May 2020, Ludovic Courtès wrote: > Jack Hill skribis: >> On Mon, 4 May 2020, Ludovic Courtès wrote: >> >> […] >> >>>> - ,@(package-inputs emacs))) >>>> + ;; Emacs no longer uses ImageMagick by default >>>> + ;; https://git.savannah.gnu.org/cgit/emacs.git/tree/etc/NEWS?h=emacs-27.0.91&id=c36c5a3dedbb2e0349be1b6c3b7567ea7b594f1c#n102 >>>> + ,@(let ((package-eq? (lambda (symbol input-item) >>>> + (match input-item >>>> + ((name package) >>>> + (eq? symbol package)))))) >>>> + (delete imagemagick (package-inputs emacs) package-eq?)))) >>> >>> For simplicity, we’d typically write: >>> >>> (alist-delete "imagemagick" (package-inputs emacs)) >>> >>> I can do it for you if you want, thanks! >> >> Sure, please go ahead. > > Done, thanks! Ludo’ I guess we can take (ice-9 match) out of the imports now that we're using alist-delete. Should I propose another patch, or do you want to do that? Best, Jack