aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/progmodes/cperl-mode.el45
1 files changed, 7 insertions, 38 deletions
diff --git a/lisp/progmodes/cperl-mode.el b/lisp/progmodes/cperl-mode.el
index ed9b234d69c..ae839a66220 100644
--- a/lisp/progmodes/cperl-mode.el
+++ b/lisp/progmodes/cperl-mode.el
@@ -3473,49 +3473,18 @@ the sections using `cperl-pod-head-face', `cperl-pod-face',
3473 (font-lock-string-face (if (boundp 'font-lock-string-face) 3473 (font-lock-string-face (if (boundp 'font-lock-string-face)
3474 font-lock-string-face 3474 font-lock-string-face
3475 'font-lock-string-face)) 3475 'font-lock-string-face))
3476 (my-cperl-delimiters-face (if (boundp 'font-lock-constant-face) 3476 (my-cperl-delimiters-face
3477 font-lock-constant-face 3477 font-lock-constant-face)
3478 'font-lock-constant-face))
3479 (my-cperl-REx-spec-char-face ; [] ^.$ and wrapper-of ({}) 3478 (my-cperl-REx-spec-char-face ; [] ^.$ and wrapper-of ({})
3480 (if (boundp 'font-lock-function-name-face) 3479 font-lock-function-name-face)
3481 font-lock-function-name-face
3482 'font-lock-function-name-face))
3483 (font-lock-variable-name-face ; interpolated vars and ({})-code
3484 (if (boundp 'font-lock-variable-name-face)
3485 font-lock-variable-name-face
3486 'font-lock-variable-name-face))
3487 (font-lock-function-name-face ; used in `cperl-find-sub-attrs'
3488 (if (boundp 'font-lock-function-name-face)
3489 font-lock-function-name-face
3490 'font-lock-function-name-face))
3491 (font-lock-constant-face ; used in `cperl-find-sub-attrs'
3492 (if (boundp 'font-lock-constant-face)
3493 font-lock-constant-face
3494 'font-lock-constant-face))
3495 (my-cperl-REx-0length-face ; 0-length, (?:)etc, non-literal \ 3480 (my-cperl-REx-0length-face ; 0-length, (?:)etc, non-literal \
3496 (if (boundp 'font-lock-builtin-face) 3481 font-lock-builtin-face)
3497 font-lock-builtin-face
3498 'font-lock-builtin-face))
3499 (font-lock-comment-face
3500 (if (boundp 'font-lock-comment-face)
3501 font-lock-comment-face
3502 'font-lock-comment-face))
3503 (font-lock-warning-face
3504 (if (boundp 'font-lock-warning-face)
3505 font-lock-warning-face
3506 'font-lock-warning-face))
3507 (my-cperl-REx-ctl-face ; (|) 3482 (my-cperl-REx-ctl-face ; (|)
3508 (if (boundp 'font-lock-keyword-face) 3483 font-lock-keyword-face)
3509 font-lock-keyword-face
3510 'font-lock-keyword-face))
3511 (my-cperl-REx-modifiers-face ; //gims 3484 (my-cperl-REx-modifiers-face ; //gims
3512 (if (boundp 'cperl-nonoverridable-face) 3485 'cperl-nonoverridable-face)
3513 cperl-nonoverridable-face
3514 'cperl-nonoverridable-face))
3515 (my-cperl-REx-length1-face ; length=1 escaped chars, POSIX classes 3486 (my-cperl-REx-length1-face ; length=1 escaped chars, POSIX classes
3516 (if (boundp 'font-lock-type-face) 3487 font-lock-type-face)
3517 font-lock-type-face
3518 'font-lock-type-face))
3519 (stop-point (if ignore-max 3488 (stop-point (if ignore-max
3520 (point-max) 3489 (point-max)
3521 max)) 3490 max))