dev-lang/lfe: fix emacs mode

Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Maciej Barć <xgqt@protonmail.com>
This commit is contained in:
Maciej Barć 2021-02-03 02:01:05 +01:00
parent 12396cc02c
commit 0ca4d65583
No known key found for this signature in database
GPG Key ID: 031C9FE65BED714A
1 changed files with 12 additions and 2 deletions

View File

@ -2,5 +2,15 @@
(add-to-list 'load-path "@SITELISP@")
(autoload 'lfe-mode "lfe-mode" nil t)
(autoload 'inferior-lfe-mode "inferior-lfe-mode" nil t)
(autoload 'lfe-mode "lfe-mode"
"Major mode for editing LFE code." t)
(autoload 'lfe-indent-function "lfe-indent"
"Indent LFE." t)
(autoload 'inferior-lfe-mode "inferior-lfe"
"Major mode for interacting with an inferior LFE process." t)
(autoload 'inferior-lfe "inferior-lfe"
"Run an LFE process." t)
(autoload 'run-lfe "inferior-lfe"
"Run an LFE process." t)
(add-to-list 'auto-mode-alist '("\\.lfe\\'" . lfe-mode) t)