1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-02-26 01:40:53 -08:00

; * 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
No known key found for this signature in database
GPG key ID: B4771664B476B290

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 "^;{}?:")