From: Harald Jörg Date: Thu, 26 Sep 2024 13:20:01 +0000 (+0200) Subject: ; cperl-mode.el: Fix an invalid face specification X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d3002236cc45b3b14403c7504100d640e19fd506;p=emacs.git ; 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) --- 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