diff options
author | Eduardo Julian | 2021-09-08 00:22:45 -0400 |
---|---|---|
committer | Eduardo Julian | 2021-09-08 00:22:45 -0400 |
commit | 964ec62d4fbcc1fb2336a3de355ce3554ef7eb04 (patch) | |
tree | 04ae6f260d3345772a86849b6f969a9d87e959c8 /lux-mode | |
parent | ac419f9e94bc3b82cfb78c41e91b08b308a2ac71 (diff) |
Now using eval to derive code for arbitrary types.
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 ca19d3758..98844d106 100644 --- a/lux-mode/lux-mode.el +++ b/lux-mode/lux-mode.el @@ -378,7 +378,7 @@ Called by `imenu--generic-function'." (type//checking (altRE ":" ":as" ":let" ":~" ":expected" ":of" ":sharing" ":by_example" ":hole")) (type//abstract (altRE "abstract:" ":abstraction" ":representation" ":transmutation" "\\^:representation")) (type//unit (altRE "unit:" "scale:")) - (type//poly (altRE "poly:" "derived:")) + (type//poly (altRE "poly:")) (type//dynamic (altRE ":dynamic" "/.:static")) (type//capability (altRE "capability:")) ;; Data |