chore: (if|when)-let macros obsolete; use -let* counterparts#869
Conversation
|
Thanks, though the CI is complaining, in one case because we're testing an old version of Emacs! Not sure why the other error ATM. While were here, is it worth bumping the version number, or minimum required Emacs version? |
|
I can't check right now, but does depending on the compat package help? I would hope it defines those starred macros for older Emacs versions as well. |
It looks like yes: https://elpa.gnu.org/packages/doc/compat.html Can you give that a try @ashton314? |
|
I'm not familiar with |
|
@bdarcus Added |
|
Thanks @ashton314 ! |
Emacs 31 makes
if-letandwhen-letmacros obsolete. I'm getting warning messages whenever I boot up Emacs about this. This commit switchesif-let→if-let*andwhen-let→when-let*. The warning goes away with this change.Also, fixed a typo in CONTRIBUTING.org.