diff options
author | Eduardo Julian | 2018-08-20 23:21:01 -0400 |
---|---|---|
committer | Eduardo Julian | 2018-08-20 23:21:01 -0400 |
commit | a1944a9d561e76b02717673647b87704118c03a6 (patch) | |
tree | 36a76c0a82a9dd120152366aee3f4e1e307f8377 /lux-mode | |
parent | 726dbf02da1ae0da3965ec0a72e99fec1730f882 (diff) |
- More minor optimizations.
- Removed ratio syntax for Frac.
Diffstat (limited to 'lux-mode')
-rw-r--r-- | lux-mode/lux-mode.el | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lux-mode/lux-mode.el b/lux-mode/lux-mode.el index 2fd94069e..c48d41ae6 100644 --- a/lux-mode/lux-mode.el +++ b/lux-mode/lux-mode.el @@ -227,7 +227,6 @@ Called by `imenu--generic-function'." (let ((bitRE (literal (special (altRE "0" "1")))) (natRE (literal natural)) (int&fracRE (literal (concat integer "\\(\\." natural "\\(\\(e\\|E\\)" integer "\\)?\\)?"))) - (frac-ratioRE (literal (concat integer "/" natural))) (revRE (literal (concat "\\." natural))) (tagRE (let ((separator "\\.")) (let ((in-prelude separator) @@ -315,8 +314,6 @@ Called by `imenu--generic-function'." (,natRE 0 font-lock-constant-face) ;; Int literals && Frac literals (,int&fracRE 0 font-lock-constant-face) - ;; Frac "ratio" literals - (,frac-ratioRE 0 font-lock-constant-face) ;; Rev literals (,revRE 0 font-lock-constant-face) ;; Tags |