emacs-module-rs icon indicating copy to clipboard operation
emacs-module-rs copied to clipboard

Rust binding and tools for Emacs's dynamic modules

Results 25 emacs-module-rs issues
Sort by recently updated
recently updated
newest added

I can't reconcile what was said on the mailing list about unloading leaving old functions laying around. The reloading here just loads the new module without unloading the old one,...

https://blog.rust-lang.org/2025/02/20/Rust-1.85.0/ https://doc.rust-lang.org/edition-guide/editions/transitioning-an-existing-project-to-a-new-edition.html

According to the discussion in emacs bug#74922 it's possible that emacs passes invalid strings to dynamic libraries. Fixes #58

Repro: 1. on Windows, MYSY2 UCRT Emacs 29.4, UCRT GCC 14.2, rustc 1.83.0, target x86_64-pc-windows-gnu 2. clone https://github.com/ubolonton/emacs-rs-examples/tree/master/greeting, where ```toml [dependencies] emacs = "0.11.0" ``` 3. it works 4. use...

I just stumbled upon emacs crash when I do grep in files which contains binary files. In my case emacs calls rust function with file contents which causes the panic....