[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
master 3d21ba3 1/3: ; * lisp/progmodes/js.el: Remove unnecessary concat
From: |
Jackson Ray Hamilton |
Subject: |
master 3d21ba3 1/3: ; * lisp/progmodes/js.el: Remove unnecessary concat |
Date: |
Sat, 7 Dec 2019 16:23:09 -0500 (EST) |
branch: master
commit 3d21ba374f137dbeb63cf03bb014b4e412685f50
Author: Jackson Ray Hamilton <address@hidden>
Commit: Jackson Ray Hamilton <address@hidden>
; * lisp/progmodes/js.el: Remove unnecessary concat
---
lisp/progmodes/js.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lisp/progmodes/js.el b/lisp/progmodes/js.el
index 5f09134..96583bf 100644
--- a/lisp/progmodes/js.el
+++ b/lisp/progmodes/js.el
@@ -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 "^;{}?:")