diff options
author | Eduardo Julian | 2022-06-11 00:10:52 -0400 |
---|---|---|
committer | Eduardo Julian | 2022-06-11 00:10:52 -0400 |
commit | 5b36c00da8a21c5d70adec4b50ef573e12dc5cf8 (patch) | |
tree | a1549d05cce57d20745c0835ea2419858fc30a4e /lux-mode | |
parent | f21ca0dc1956a47b8f7ac6e0ea67d7d246c55280 (diff) |
De-sigil-ification: : [Part 2]
Diffstat (limited to 'lux-mode')
-rw-r--r-- | lux-mode/lux-mode.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lux-mode/lux-mode.el b/lux-mode/lux-mode.el index 593eeb87b..ddaa4b6e2 100644 --- a/lux-mode/lux-mode.el +++ b/lux-mode/lux-mode.el @@ -399,7 +399,7 @@ Called by `imenu--generic-function'." (definition (altRE "\\.using" "def:" "type:" "program:" "inline:" "implementation:" - "macro" "syntax:" + "macro" "syntax" "exception:" "word:" "analysis:" "synthesis:" "generation:" "directive:"))) @@ -584,6 +584,7 @@ This function also returns nil meaning don't specify the indentation." (define-lux-indent (function 'defun) (macro 'defun) + ("syntax" 'defun) (import 'defun) (export 'defun) |