branch: elpa/gruvbox-theme commit d65a208003bebcc5d2a48dd22a00226e4cc99640 Author: Angel Mancebo <amanc...@users.noreply.github.com> Commit: Jason Milkins <jason...@users.noreply.github.com>
Update gruvbox.el Fix bold so that it respects `gruvbox-bold-constructs'. --- gruvbox.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gruvbox.el b/gruvbox.el index 769bc131fc..86824229be 100644 --- a/gruvbox.el +++ b/gruvbox.el @@ -114,7 +114,7 @@ Should contain 2 %s constructs to allow for theme name and directory/prefix") (font-lock-constant-face (:foreground gruvbox-bright_purple)) (font-lock-comment-face (:foreground gruvbox-dark4)) (font-lock-function-name-face (:foreground gruvbox-bright_yellow)) - (font-lock-keyword-face (:foreground gruvbox-bright_red :bold '(if gruvbox-bold-constructs t nil))) + (font-lock-keyword-face (:foreground gruvbox-bright_red :bold ,(if gruvbox-bold-constructs t nil))) (font-lock-string-face (:foreground gruvbox-bright_green)) (font-lock-number-face (:foreground gruvbox-bright_purple)) (font-lock-variable-name-face (:foreground gruvbox-bright_blue))