From c56f802b4bd43e2f14f4c639fd0dadb685b46653 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Thu, 6 Dec 2018 15:57:23 -0500 Subject: [PATCH] Update (if|when)-let* alias comments --- core/core-lib.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/core/core-lib.el b/core/core-lib.el index 6ca4bab3b..0a23b3146 100644 --- a/core/core-lib.el +++ b/core/core-lib.el @@ -7,11 +7,12 @@ (eval-and-compile (unless EMACS26+ (with-no-warnings - ;; if-let and when-let are deprecated in Emacs 26+ in favor of their - ;; if-let* variants, so we alias them for 25 users. + ;; if-let and when-let were moved to (if|when)-let* in Emacs 26+ so we + ;; alias them for 25 users. (defalias 'if-let* #'if-let) (defalias 'when-let* #'when-let)))) + ;; ;; Helpers