From 4cd5e1552f266f6717e1961faa7a67d6acaa7515 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Miquel?= Date: Sun, 7 Aug 2022 18:58:35 +0200 Subject: [PATCH] Fix quoting of inherited faces --- elpy.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/elpy.el b/elpy.el index 410f3619..454b8649 100644 --- a/elpy.el +++ b/elpy.el @@ -3260,7 +3260,7 @@ documentation (only used for Emacs >= 28)." :group 'elpy) (defface elpy-folding-fringe-face - '((t (:inherit 'font-lock-comment-face + '((t (:inherit font-lock-comment-face :box (:line-width 1 :style released-button)))) "Face for folding bitmaps appearing on the fringe." :group 'elpy) @@ -3271,7 +3271,7 @@ documentation (only used for Emacs >= 28)." :group 'elpy) (defface elpy-folding-face - '((t (:inherit 'font-lock-comment-face :box t))) + '((t (:inherit font-lock-comment-face :box t))) "Face for the folded region indicator." :group 'elpy) @@ -3292,7 +3292,7 @@ documentation (only used for Emacs >= 28)." "^\\s-*[uU]?[rR]?\"\"\"\n?\\s-*" "Version of `hs-block-start-regexp' for docstrings.") -(defface elpy-codecell-boundary '((t :inherit 'highlight)) +(defface elpy-codecell-boundary '((t :inherit highlight)) "Face for elpy codecell boundary." :group 'elpy-mode)