diff options
author | Eduardo Julian | 2022-07-02 05:38:27 -0400 |
---|---|---|
committer | Eduardo Julian | 2022-07-02 05:38:27 -0400 |
commit | b96beb587c11fcfbce86ce2d62351600cf6cad1b (patch) | |
tree | c9a558ab1391ac97cb11e8777ea78299f1ab5555 /lux-mode | |
parent | 104130efba46a875eba566384578f8aa8593ad37 (diff) |
More traditional names for unquoting macros.
Diffstat (limited to 'lux-mode')
-rw-r--r-- | lux-mode/lux-mode.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lux-mode/lux-mode.el b/lux-mode/lux-mode.el index f3b36dd27..00ed0293f 100644 --- a/lux-mode/lux-mode.el +++ b/lux-mode/lux-mode.el @@ -384,8 +384,8 @@ Called by `imenu--generic-function'." (data//implicit (altRE "implicitly" "a/an" "a" "an")) (data//collection (altRE "list" "sequence" "tree")) ;; Code - (code//quotation (altRE "`" "`'" "'" "~" "~\\+" "~!" "~'")) - (code//super-quotation (altRE "``" "~~")) + (code//quotation (altRE "`" "`'" "'" "," ",\\*" ",!" ",'")) + (code//super-quotation (altRE "``" ",,")) (code//template (altRE "with_template" "template")) ;; Miscellaneous (jvm-host (altRE "import" "export" "class" "interface" "object" "do_to" "synchronized" "class_for")) |