diff options
author | Eduardo Julian | 2022-11-15 20:07:38 -0400 |
---|---|---|
committer | Eduardo Julian | 2022-11-15 20:07:38 -0400 |
commit | 91a1f21f3c75750217d272554bc8a341f075f82d (patch) | |
tree | 5e745cea303450fa61f931d4a4be6b6fa1e279a2 /lux-mode | |
parent | d656ef2143151a1d78768df4562e5275dff67b9d (diff) |
Now documenting dependers and dependees.
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 e01bf3121..5418fa683 100644 --- a/lux-mode/lux-mode.el +++ b/lux-mode/lux-mode.el @@ -396,7 +396,7 @@ Called by `imenu--generic-function'." (function-definition (altRE "function" "|>>" "<<|" "program")) (remember (altRE "remember" "to_do" "fix_me")) - (extension (altRE "analysis" "synthesis" "generation" "declaration")) + (extension (altRE "analysis" "synthesis" "translation" "declaration")) (definition (altRE "\\.require" "def" "inlined" "type"))) (let ((control (altRE control//flow @@ -592,7 +592,7 @@ This function also returns nil meaning don't specify the indentation." ("analysis" 'defun) ("synthesis" 'defun) - ("generation" 'defun) + ("translation" 'defun) ("declaration" 'defun) ("class" 'defun) |