aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-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 b1068bfc7b8..9185371b523 100644
--- a/lisp/progmodes/js.el
+++ b/lisp/progmodes/js.el
@@ -65,7 +65,7 @@
65 65
66;;; Constants 66;;; Constants
67 67
68(defconst js--name-start-re (concat "[a-zA-Z_$]") 68(defconst js--name-start-re (concat "[[:alpha:]_$]")
69 "Regexp matching the start of a JavaScript identifier, without grouping.") 69 "Regexp matching the start of a JavaScript identifier, without grouping.")
70 70
71(defconst js--stmt-delim-chars "^;{}?:") 71(defconst js--stmt-delim-chars "^;{}?:")