emacs-elpa-diffs
[Top][All Lists]
Advanced

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

[elpa] master b23d9e4 01/49: Fix Highlighting function name of form {"qu


From: Dmitry Gutov
Subject: [elpa] master b23d9e4 01/49: Fix Highlighting function name of form {"quoted name" () {...}}
Date: Mon, 16 Jan 2017 15:35:46 +0000 (UTC)

branch: master
commit b23d9e408376d27dc20d19a41c4eabc341e61e2b
Author: Geoff Jacobsen <address@hidden>
Commit: Geoff Jacobsen <address@hidden>

    Fix Highlighting function name of form {"quoted name" () {...}}
    
    This patch will make "quoted name" use font-lock-function-name-face just
    like {"quoted name": function () {...}} does.
---
 js2-mode.el |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/js2-mode.el b/js2-mode.el
index db61389..77b29a0 100644
--- a/js2-mode.el
+++ b/js2-mode.el
@@ -10871,7 +10871,7 @@ When `js2-is-in-destructuring' is t, forms like {a, b, 
c} will be permitted."
      ;; method definition: {f() {...}}
      ((and (= (js2-peek-token) js2-LP)
            (>= js2-language-version 200))
-      (when (js2-name-node-p key)  ; highlight function name properties
+      (when (or (js2-name-node-p key) (js2-string-node-p key)) ; highlight 
function name properties
         (js2-record-face 'font-lock-function-name-face))
       (js2-parse-method-prop pos key property-type))
      ;; binding element with initializer



reply via email to

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