; * lisp/progmodes/js.el: Remove unnecessary concat

This commit is contained in:
Jackson Ray Hamilton
2019-12-07 11:12:49 -08:00
parent 68d4a14fd4
commit 3d21ba374f

View File

@@ -68,7 +68,7 @@
;;; Constants
(defconst js--name-start-re (concat "[[:alpha:]_$]")
(defconst js--name-start-re "[[:alpha:]_$]"
"Regexp matching the start of a JavaScript identifier, without grouping.")
(defconst js--stmt-delim-chars "^;{}?:")