branch: externals/compat commit 3ca30f289001be82b10a833aaca1fefebf9212bc Author: Philip Kaludercic <phil...@posteo.net> Commit: Philip Kaludercic <phil...@posteo.net>
Use if-let instead of compat-if-let in when-let --- compat-25.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compat-25.el b/compat-25.el index 36d58d21c9..b236622714 100644 --- a/compat-25.el +++ b/compat-25.el @@ -189,7 +189,7 @@ If all are non-nil, return the value of the last form in BODY. The variable list SPEC is the same as in `if-let'." :feature 'subr-x (declare (indent 1) (debug if-let)) - `(compat-if-let ,spec ,(macroexp-progn body))) + `(if-let ,spec ,(macroexp-progn body))) (compat-defmacro thread-first (&rest forms) "Thread FORMS elements as the first argument of their successor.