From: Jackson Ray Hamilton Date: Sat, 7 Dec 2019 19:12:49 +0000 (-0800) Subject: ; * lisp/progmodes/js.el: Remove unnecessary concat X-Git-Tag: emacs-27.0.90~412 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3d21ba374f137dbeb63cf03bb014b4e412685f50;p=emacs.git ; * lisp/progmodes/js.el: Remove unnecessary concat --- 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 @@ ;;; 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 "^;{}?:")