Update (if|when)-let* alias comments

This commit is contained in:
Henrik Lissner 2018-12-06 15:57:23 -05:00
parent b5552eed39
commit c56f802b4b
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -7,11 +7,12 @@
(eval-and-compile (eval-and-compile
(unless EMACS26+ (unless EMACS26+
(with-no-warnings (with-no-warnings
;; if-let and when-let are deprecated in Emacs 26+ in favor of their ;; if-let and when-let were moved to (if|when)-let* in Emacs 26+ so we
;; if-let* variants, so we alias them for 25 users. ;; alias them for 25 users.
(defalias 'if-let* #'if-let) (defalias 'if-let* #'if-let)
(defalias 'when-let* #'when-let)))) (defalias 'when-let* #'when-let))))
;; ;;
;; Helpers ;; Helpers