]> git.eshelyaron.com Git - emacs.git/commitdiff
; * lisp/progmodes/js.el: Remove unnecessary concat
authorJackson Ray Hamilton <jackson@jacksonrayhamilton.com>
Sat, 7 Dec 2019 19:12:49 +0000 (11:12 -0800)
committerJackson Ray Hamilton <jackson@jacksonrayhamilton.com>
Sat, 7 Dec 2019 21:18:00 +0000 (13:18 -0800)
lisp/progmodes/js.el

index 5f0913470fdf3546b1d680799b42005245c93511..96583bf93866de35be60b7c3110992594b68786d 100644 (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 "^;{}?:")