chiark / gitweb /
el/dot-emacs.el (mdw-fontify-javascript): Remove duplicate keywords.
authorMark Wooding <mdw@distorted.org.uk>
Sat, 25 May 2019 12:24:58 +0000 (13:24 +0100)
committerMark Wooding <mdw@distorted.org.uk>
Sat, 25 May 2019 12:26:29 +0000 (13:26 +0100)
These were apparently duplicated when I introduced this function.

el/dot-emacs.el

index b65c132037b1dd447c984016aa36c8d959370cd8..9800b0dfaa0fb052798b06d6dd35c2d13ba04259 100644 (file)
@@ -2282,10 +2282,7 @@ (defun mdw-fontify-javascript ()
                      "private" "protected" "public" "return" "short"
                      "static" "super" "switch" "synchronized" "throw"
                      "throws" "transient" "try" "typeof" "var" "void"
                      "private" "protected" "public" "return" "short"
                      "static" "super" "switch" "synchronized" "throw"
                      "throws" "transient" "try" "typeof" "var" "void"
-                     "volatile" "while" "with" "yield"
-
-                     "boolean" "byte" "char" "double" "float" "int" "long"
-                     "short" "void"))
+                     "volatile" "while" "with" "yield"))
        (javascript-builtins
         (mdw-regexps "false" "null" "undefined" "Infinity" "NaN" "true"
                      "arguments" "this")))
        (javascript-builtins
         (mdw-regexps "false" "null" "undefined" "Infinity" "NaN" "true"
                      "arguments" "this")))