Remove unnecessary let block
This commit is contained in:
parent
8f5d822363
commit
d9a9243a62
1 changed files with 5 additions and 6 deletions
|
@ -47,12 +47,11 @@ Otherwise, it maps colors to a term-color-* face."
|
||||||
(propertize
|
(propertize
|
||||||
text 'face
|
text 'face
|
||||||
(append (get-text-property 0 'face text)
|
(append (get-text-property 0 'face text)
|
||||||
(let (_)
|
|
||||||
(cond ((>= code 40)
|
(cond ((>= code 40)
|
||||||
`(:background ,(caddr (assq style doom-ansi-alist))))
|
`(:background ,(caddr (assq style doom-ansi-alist))))
|
||||||
((>= code 30)
|
((>= code 30)
|
||||||
`(:foreground ,(face-foreground (caddr (assq style doom-ansi-alist)))))
|
`(:foreground ,(face-foreground (caddr (assq style doom-ansi-alist)))))
|
||||||
((cddr (assq style doom-ansi-alist))))))))))
|
((cddr (assq style doom-ansi-alist)))))))))
|
||||||
|
|
||||||
;;;###autoload
|
;;;###autoload
|
||||||
(defmacro format! (message &rest args)
|
(defmacro format! (message &rest args)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue