emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 8165750 2/2: Tweak how cperl-mode fontifies hashes and arrays


From: Lars Ingebrigtsen
Subject: master 8165750 2/2: Tweak how cperl-mode fontifies hashes and arrays
Date: Sat, 5 Sep 2020 08:36:39 -0400 (EDT)

branch: master
commit 81657507c296843971e4a921377451ecc3739e5e
Author: Lars Ingebrigtsen <larsi@gnus.org>
Commit: Lars Ingebrigtsen <larsi@gnus.org>

    Tweak how cperl-mode fontifies hashes and arrays
    
    * lisp/progmodes/cperl-mode.el (cperl-init-faces): Fontify hashes
    and arrays (%foo and @foo) before the keywords, since the keyword
    regexps are "wider" and the hash/array regexp just match those two
    things (bug#22867).
---
 lisp/progmodes/cperl-mode.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lisp/progmodes/cperl-mode.el b/lisp/progmodes/cperl-mode.el
index 5dee500..7a1c2e4 100644
--- a/lisp/progmodes/cperl-mode.el
+++ b/lisp/progmodes/cperl-mode.el
@@ -5776,8 +5776,8 @@ indentation and initial hashes.  Behaves usually outside 
of comment."
                  t-font-lock-keywords)
                cperl-font-lock-keywords cperl-font-lock-keywords-1
                cperl-font-lock-keywords-2 (append
-                                          cperl-font-lock-keywords-1
-                                          t-font-lock-keywords-1)))
+                                          t-font-lock-keywords-1
+                                          cperl-font-lock-keywords-1)))
        (if (fboundp 'ps-print-buffer) (cperl-ps-print-init))
        (if (or (featurep 'choose-color) (featurep 'font-lock-extra))
            (eval                       ; Avoid a warning



reply via email to

[Prev in Thread] Current Thread [Next in Thread]