Closed alphapapa closed 1 year ago
So it would seem that, on Emacs <= 26.3, the
when-let
macro needs to be handled correctly (IIRC it's necessary to(require 'subr-x)
, or something like that).
It should probably be avoided altogether so long as async.el
assumes Emacs 24.4.
"Basil L. Contovounesios" @.***> writes:
So it would seem that, on Emacs <= 26.3, the when-let macro needs to be handled correctly (IIRC it's necessary to (require 'subr-x), or something like that).
It should probably be avoided altogether so long as async.el assumes Emacs 24.4.
Fixed by 328bca5.
Thanks.
— Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you were mentioned.*Message ID: @.***>
-- Thierry
@basil-conto @thierryvolpiatto Thanks!
Regarding https://github.com/jwiegley/emacs-async/issues/169 and the issue fixed in https://github.com/jwiegley/emacs-async/pull/170:
FWIW, I also noticed that, soon after I finally got
org-ql
's test suite passing again, it started failing again, but only on Emacs versions 26.3 and snapshot. For example, see the "Initialize sandbox" phase here: https://github.com/alphapapa/org-ql/actions/runs/4373888244/jobs/7735467506 And even commits on which the test suite passed before now don't. Finally I tracked it down to this problem. :)@thierryvolpiatto However, in the run on Emacs 26.3, I still see in the log output parts like this:
So it would seem that, on Emacs <= 26.3, the
when-let
macro needs to be handled correctly (IIRC it's necessary to(require 'subr-x)
, or something like that).Thanks for your work.