skeeto / emacs-aio

async/await for Emacs Lisp
The Unlicense
215 stars 12 forks source link

Can `emacs-aio` support Emacs 25? #7

Closed kiennq closed 4 years ago

kiennq commented 4 years ago

From the README it seems that emacs-aio is using Emacs 25 generator, but the requirement for it is Emacs 26. Can emacs-aio works with Emacs 25?

skeeto commented 4 years ago

As mentioned in the README, aio uses the "record" built-in function which is Emacs 26. It's not fundamentally required like generators, but it's generally nice to build upon a recent baseline. Emacs 26 is already nearly two years old, and the minimum version will remain Emacs 26 for a long time.

kiennq commented 4 years ago

Thanks