Open ubolonton opened 5 years ago
Often time, there's no initialization logic needed. Modules should be able to put #![emacs::module] at the root of the crate, instead of this:
#![emacs::module]
// So much boilerplate! #[emacs::module] fn init(_: &Env) -> Result<()> { Ok(()) }
This needs to wait for Rust's issue #54726.
Often time, there's no initialization logic needed. Modules should be able to put
#![emacs::module]
at the root of the crate, instead of this:This needs to wait for Rust's issue #54726.