diff options
author | Eduardo Julian | 2022-03-09 03:35:16 -0400 |
---|---|---|
committer | Eduardo Julian | 2022-03-09 03:35:16 -0400 |
commit | ac2c19d93407b00c89513f0f81e9cbbd1425bd9a (patch) | |
tree | 1d46f3ed935ed84ab557c58f723ff0e3d24d6806 /lux-mode | |
parent | bf0562d72b7d42be2b378a7f312fe48ac1f4284c (diff) |
Added an easy way to export Lux functionality to host programs (in JVM).
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 ee5050d47..016c0170c 100644 --- a/lux-mode/lux-mode.el +++ b/lux-mode/lux-mode.el @@ -393,7 +393,7 @@ Called by `imenu--generic-function'." (code//template (altRE "template" "template:")) ;; Miscellaneous (actor (altRE "actor:" "message:" "actor")) - (jvm-host (altRE "class:" "interface:" "import:" "object" "do_to" "synchronized" "class_for")) + (jvm-host (altRE "import:" "export:" "class:" "interface:" "object" "do_to" "synchronized" "class_for")) (alternative-format (altRE "char" "bin" "oct" "hex")) (documentation (altRE "comment" "documentation:")) (function-application (altRE "|>" "<|" "_\\$" "\\$_")) |