diff options
| author | Sibi Prabakaran <sibi@psibi.in> | 2024-03-12 13:06:35 +0530 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-12 13:06:35 +0530 |
| commit | 9239745140b1cef2bcf9b18842dece08052e749d (patch) | |
| tree | 51ea90cb5954f594f174c9d3163cbb719c0f4fba | |
| parent | 825a37dbf7b3a5c2ee44e3707c4ad081fdf7dd15 (diff) | |
| parent | 3f6ee2187bbb71fcad18e4db3e8c2b4d0100e6ad (diff) | |
| download | rust-mode-9239745140b1cef2bcf9b18842dece08052e749d.tar.gz | |
Merge pull request #532 from jroimartin/rust-mode-interactive
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)) |
