From d9a9243a62ba98055553b58b01e1b3e262329d2b Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sun, 9 Sep 2018 16:39:25 -0400 Subject: [PATCH] Remove unnecessary let block --- core/autoload/message.el | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/core/autoload/message.el b/core/autoload/message.el index e7645d352..b475cb5ad 100644 --- a/core/autoload/message.el +++ b/core/autoload/message.el @@ -47,12 +47,11 @@ Otherwise, it maps colors to a term-color-* face." (propertize text 'face (append (get-text-property 0 'face text) - (let (_) - (cond ((>= code 40) - `(:background ,(caddr (assq style doom-ansi-alist)))) - ((>= code 30) - `(:foreground ,(face-foreground (caddr (assq style doom-ansi-alist))))) - ((cddr (assq style doom-ansi-alist)))))))))) + (cond ((>= code 40) + `(:background ,(caddr (assq style doom-ansi-alist)))) + ((>= code 30) + `(:foreground ,(face-foreground (caddr (assq style doom-ansi-alist))))) + ((cddr (assq style doom-ansi-alist))))))))) ;;;###autoload (defmacro format! (message &rest args)