aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJackson Ray Hamilton2019-12-07 11:12:49 -0800
committerJackson Ray Hamilton2019-12-07 13:18:00 -0800
commit3d21ba374f137dbeb63cf03bb014b4e412685f50 (patch)
treec780a1b7ea1370ef2ad103f2c48b67f2ed7fd591
parent68d4a14fd46754c3951dd669c9821447bfbe844e (diff)
downloademacs-3d21ba374f137dbeb63cf03bb014b4e412685f50.tar.gz
emacs-3d21ba374f137dbeb63cf03bb014b4e412685f50.zip
; * lisp/progmodes/js.el: Remove unnecessary concat
-rw-r--r--lisp/progmodes/js.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/js.el b/lisp/progmodes/js.el
index 5f0913470fd..96583bf9386 100644
--- a/lisp/progmodes/js.el
+++ b/lisp/progmodes/js.el
@@ -68,7 +68,7 @@
68 68
69;;; Constants 69;;; Constants
70 70
71(defconst js--name-start-re (concat "[[:alpha:]_$]") 71(defconst js--name-start-re "[[:alpha:]_$]"
72 "Regexp matching the start of a JavaScript identifier, without grouping.") 72 "Regexp matching the start of a JavaScript identifier, without grouping.")
73 73
74(defconst js--stmt-delim-chars "^;{}?:") 74(defconst js--stmt-delim-chars "^;{}?:")