diff options
author | Ulrich Müller <ulm@gentoo.org> | 2024-11-16 17:11:32 +0100 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2024-11-16 17:20:09 +0100 |
commit | 318f32c19ea24947863421884e7d4f0da1e3b4aa (patch) | |
tree | 1596cc8bfa538f2c47b9feb2f3d31d74fca8afeb /app-emacs/actionscript-mode/files | |
parent | dev-perl/Test-Cmd: Keyword 1.90.0 sparc, #943635 (diff) | |
download | gentoo-318f32c19ea24947863421884e7d4f0da1e3b4aa.tar.gz gentoo-318f32c19ea24947863421884e7d4f0da1e3b4aa.tar.bz2 gentoo-318f32c19ea24947863421884e7d4f0da1e3b4aa.zip |
app-emacs/actionscript-mode: Use with-eval-after-load in site-init
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'app-emacs/actionscript-mode/files')
-rw-r--r-- | app-emacs/actionscript-mode/files/50actionscript-mode-gentoo.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app-emacs/actionscript-mode/files/50actionscript-mode-gentoo.el b/app-emacs/actionscript-mode/files/50actionscript-mode-gentoo.el index 7b6ca265923d..9bbcc97ed522 100644 --- a/app-emacs/actionscript-mode/files/50actionscript-mode-gentoo.el +++ b/app-emacs/actionscript-mode/files/50actionscript-mode-gentoo.el @@ -2,4 +2,4 @@ (autoload 'actionscript-mode "actionscript-mode" "Major mode for editing Actionscript files." t) (add-to-list 'auto-mode-alist '("\\.as\\'" . actionscript-mode)) -(eval-after-load "actionscript-mode" '(load "actionscript-config")) +(with-eval-after-load "actionscript-mode" (load "actionscript-config")) |