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 b65c132..9800b0d 100644 (file)
@@ -2282,10 +2282,7 @@ name, as a symbol."
                      "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")))