From: Mark Wooding Date: Sat, 25 May 2019 12:24:58 +0000 (+0100) Subject: el/dot-emacs.el (mdw-fontify-javascript): Remove duplicate keywords. X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/profile/commitdiff_plain/4e23ea53658eabe385b036272b5b9c190a07de96?ds=sidebyside el/dot-emacs.el (mdw-fontify-javascript): Remove duplicate keywords. These were apparently duplicated when I introduced this function. --- diff --git a/el/dot-emacs.el b/el/dot-emacs.el index b65c132..9800b0d 100644 --- a/el/dot-emacs.el +++ b/el/dot-emacs.el @@ -2282,10 +2282,7 @@ (defun mdw-fontify-javascript () "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")))