aboutsummaryrefslogtreecommitdiff
path: root/lux-mode
diff options
context:
space:
mode:
authorEduardo Julian2019-03-13 21:14:22 -0400
committerEduardo Julian2019-03-13 21:14:22 -0400
commit8e4b93bfc90ca81d615bf9dd5af43f29fdd0f5ae (patch)
tree0b343949908c11f8f27d70e4d40b1ccd0f969add /lux-mode
parent810c2c9f524603c161f265e4ed17c6556bdef959 (diff)
Replaced the digit separator in numbers from "_" to ",".
Diffstat (limited to 'lux-mode')
-rw-r--r--lux-mode/lux-mode.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lux-mode/lux-mode.el b/lux-mode/lux-mode.el
index c72a1f76e..c888df739 100644
--- a/lux-mode/lux-mode.el
+++ b/lux-mode/lux-mode.el
@@ -217,7 +217,7 @@ Called by `imenu--generic-function'."
(concat "#" normal))
(defconst lux-font-lock-keywords
- (let ((natural "[0-9][0-9_]*")
+ (let ((natural "[0-9][0-9,]*")
(identifier_h "[a-zA-Z-\\+_=!@\\$%\\^&\\*<>;,/\\\\\\|':~\\?]")
(identifier_t "[a-zA-Z0-9-\\+_=!@\\$%\\^&\\*<>;,/\\\\\\|':~\\?]")
(sign (altRE "-" "\\+")))