diff options
author | Eduardo Julian | 2017-01-25 07:02:33 -0400 |
---|---|---|
committer | Eduardo Julian | 2017-01-25 07:02:33 -0400 |
commit | f8c2389db4a9b3239b00b9d209237d5116e12e3c (patch) | |
tree | 7144c34363b804b91f3591f726cf2f4d944873c1 /lux-mode | |
parent | 5b7b661ff721327d33b7078f4d07f6fe93307ee0 (diff) |
- Renamed lux/data/struct/tree to lux/data/struct/tree/rose.
- Moved lux/data/struct/zipper to lux/data/struct/tree/zipper.
- Moved lux/regex to lux/lexer/regex.
- Changed the suffix of annotation tags, from M to A.
- Renamed Frac(tional) numbers to Deg(rees).
Diffstat (limited to 'lux-mode')
-rw-r--r-- | lux-mode/lux-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lux-mode/lux-mode.el b/lux-mode/lux-mode.el index d471370bf..40980f097 100644 --- a/lux-mode/lux-mode.el +++ b/lux-mode/lux-mode.el @@ -248,7 +248,7 @@ Called by `imenu--generic-function'." ("\\<\\+\\(0\\|[1-9][0-9_]*\\)\\>" 0 font-lock-constant-face) ; Int|Real literals ("\\<-?\\(0\\|[1-9][0-9_]*\\)\\(\\.[0-9_]+\\)?\\>" 0 font-lock-constant-face) - ; Frac literals + ; Deg literals ("\\<\\(\\.[0-9_]+\\)\\>" 0 font-lock-constant-face) ; Tags ("#;[a-zA-Z0-9-\\+_=!@\\$%\\^&\\*<>\.,/\\\\\\|':~\\?]+" 0 font-lock-type-face) |