Skip to content

Commit bc0202b

Browse files
committed
; cperl-mode.el: Do not warn with valid character escapes
See #41. This is a one-liner, safely exempt from copyright paperwork. * lisp/progmodes/cperl-mode.el (cperl-find-pods-heres): delete valid character escapes from the list which causes warning-face to be applied
1 parent ce9def1 commit bc0202b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lisp/progmodes/cperl-mode.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5065,7 +5065,7 @@ recursive calls in starting lines of here-documents."
50655065
(cperl-postpone-fontification
50665066
(- (point) 2) (- (point) 1) 'face
50675067
(if (memq qtag
5068-
(append "ghijkmoqvFHIJKMORTVY" nil))
5068+
(append "gijkmoqFIJKMOTY" nil))
50695069
'font-lock-warning-face
50705070
my-cperl-REx-0length-face))
50715071
(if (and (eq (char-after b) qtag)

0 commit comments

Comments
 (0)