Skip to content

Commit f99effa

Browse files
authored
Tokenize names with non-latin characters (#81)
1 parent 9a31a12 commit f99effa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gnuplot-context.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ name; otherwise continues tokenizing up to the token at point. FIXME."
296296
(token
297297
(cond
298298
((gnuplot-tokenize-by-regexps
299-
("[A-Za-z_][A-Za-z0-9_]*" name)
299+
("[[:alpha:]_][[:alpha:]0-9_]*" name)
300300
("[0-9]+\\(\\.[0-9]*\\)?\\([eE][+-]?[0-9]+\\)?\\|\\.[0-9]+\\([eE][+-]?[0-9]+\\)?" number)
301301
(gnuplot-operator-regexp operator)
302302
(";" separator)))

0 commit comments

Comments
 (0)