diff options
author | Eduardo Julian | 2021-09-14 02:01:49 -0400 |
---|---|---|
committer | Eduardo Julian | 2021-09-14 02:01:49 -0400 |
commit | 1c93f003f73116202b1f964b0d1b6d3f07b69fb0 (patch) | |
tree | 925f64cd59ab2ce48bccf6dd4df1142296d2094a /lux-mode | |
parent | bca1a9cdcf837e184378d5e6339a969e40d1dbab (diff) |
No more "^slots".
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 fa048787c..885a908c8 100644 --- a/lux-mode/lux-mode.el +++ b/lux-mode/lux-mode.el @@ -349,7 +349,7 @@ Called by `imenu--generic-function'." (revRE (literal (concat "\\." natural))) (specialRE (let (;; Control (control//flow (altRE "case" "exec" "let" "if" "cond" "loop" "recur" "do" "be")) - (control//pattern-matching (altRE "\\^" "\\^or" "\\^slots" + (control//pattern-matching (altRE "\\^" "\\^or" "\\^multi" "\\^@" "\\^template" "\\^open" "\\^|>" "\\^code" "\\^sequence&" "\\^regex")) |