; 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.
This commit is contained in:
parent
f5cd5585f4
commit
53c887fdf6
1 changed files with 1 additions and 1 deletions
|
@ -6225,7 +6225,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
|
||||
|
|
Loading…
Add table
Reference in a new issue