From d3002236cc45b3b14403c7504100d640e19fd506 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Harald=20J=C3=B6rg?= Date: Thu, 26 Sep 2024 15:20:01 +0200 Subject: [PATCH] ; cperl-mode.el: Fix an invalid face specification * lisp/progmodes/cperl-mode.el (cperl-method-call): Avoid doubly quoting the parent face. This made htmlize-buffer fail. (cherry picked from commit 53c887fdf6ddd907a411d063fee69bfdc2a5757a) --- lisp/progmodes/cperl-mode.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/progmodes/cperl-mode.el b/lisp/progmodes/cperl-mode.el index cbb75c3d930..d4c51d44d64 100644 --- a/lisp/progmodes/cperl-mode.el +++ b/lisp/progmodes/cperl-mode.el @@ -6304,7 +6304,7 @@ default function." (t (funcall (default-value 'font-lock-syntactic-face-function) state)))) (defface cperl-method-call - '((t (:inherit 'default ))) + '((t (:inherit default ))) "Font Lock mode face for method calls. Usually, method calls are not fontified. We use this face to prevent calls to methods which look like -- 2.39.5