diff options
| author | Roi Martin <jroi.martin@gmail.com> | 2024-03-12 06:57:44 +0100 |
|---|---|---|
| committer | Roi Martin <jroi.martin@gmail.com> | 2024-03-12 06:57:44 +0100 |
| commit | 3f6ee2187bbb71fcad18e4db3e8c2b4d0100e6ad (patch) | |
| tree | 51ea90cb5954f594f174c9d3163cbb719c0f4fba | |
| parent | 825a37dbf7b3a5c2ee44e3707c4ad081fdf7dd15 (diff) | |
| download | rust-mode-3f6ee2187bbb71fcad18e4db3e8c2b4d0100e6ad.tar.gz | |
Allow autoloaded rust-mode function to be called interactively
| -rw-r--r-- | rust-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rust-mode.el b/rust-mode.el index ec1ecba..292bc64 100644 --- a/rust-mode.el +++ b/rust-mode.el @@ -76,7 +76,7 @@ instead of `prog-mode'. This option requires emacs29+." (require 'rust-prog-mode)) ;;;###autoload -(autoload 'rust-mode "rust-mode" "Major mode for Rust code.") +(autoload 'rust-mode "rust-mode" "Major mode for Rust code." t) ;;;###autoload (add-to-list 'auto-mode-alist '("\\.rs\\'" . rust-mode)) |
