emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/gnuplot f99effa21f: Tokenize names with non-latin characte


From: ELPA Syncer
Subject: [nongnu] elpa/gnuplot f99effa21f: Tokenize names with non-latin characters (#81)
Date: Thu, 23 Mar 2023 10:01:48 -0400 (EDT)

branch: elpa/gnuplot
commit f99effa21f85a4c0963fec6a38e9112a8157d27e
Author: Andrea Greselin <greselin.andrea@gmail.com>
Commit: GitHub <noreply@github.com>

    Tokenize names with non-latin characters (#81)
---
 gnuplot-context.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnuplot-context.el b/gnuplot-context.el
index 859368faa5..dfa20195d3 100644
--- a/gnuplot-context.el
+++ b/gnuplot-context.el
@@ -296,7 +296,7 @@ name; otherwise continues tokenizing up to the token at 
point.  FIXME."
                (token
                 (cond
                  ((gnuplot-tokenize-by-regexps
-                   ("[A-Za-z_][A-Za-z0-9_]*" name)
+                   ("[[:alpha:]_][[:alpha:]0-9_]*" name)
                    
("[0-9]+\\(\\.[0-9]*\\)?\\([eE][+-]?[0-9]+\\)?\\|\\.[0-9]+\\([eE][+-]?[0-9]+\\)?"
 number)
                    (gnuplot-operator-regexp operator)
                    (";" separator)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]