X-Debbugs-CC: jeffersoncarpenter2@gmail.com Hi all, I think the following commit was a bit too enthusiastic, as variables like @temp are now highlighted in font-lock-type-face. diff --git a/lisp/progmodes/perl-mode.el b/lisp/progmodes/perl-mode.el --- a/lisp/progmodes/perl-mode.el +++ b/lisp/progmodes/perl-mode.el @@ -181,4 +181,5 @@ ;; - ;; Fontify local and my keywords as types. - ("\\<\\(local\\|my\\)\\>" . font-lock-type-face) + ;; Fontify declarators and prefixes as types. + ("\\<\\(anon\\|argument\\|has\\|local\\|my\\|our\\|state\\|supersede\\)\\>" . font-lock-type-face) ; declarators + ("\\<\\(let\\|temp\\)\\>" . font-lock-type-face) ; prefixes ;; Am I missing something? (I don't speak Perl, so I noticed this in a regression test) Clément.