Sean Perry

Results 232 comments of Sean Perry

This function should _not_ have the `static` keyword. Sorry if I was not clear. It is important that neither this location nor the earlier reference to the function in the...

No worries @benreyn. This is an odd project because of the mix of C and Rust. 'static' means a function is not exported from the C file it is declared...

My suggestion is 2. We stop shipping Dockerfile and only ship a Dockerfile.in (or similar). When we run make at the top level of the tree it should enter into...

Fun. `(propertize)` is the likely candidate from editfns.rs. Perhaps you could add some debugging there and try again. All of the other `unwrap` calls I see are protected with `unwrap_or_else`...

This reminds me of a need that (r)emacs has. There should be a simple, obvious way to say "start emacs with this config". Something like `--with-init /path/to/init` and `/path/to/init` can...

hmmm, ok. That is not entirely what I expected from the messages in your screen shot. But the error message is there. We all wait for the next installment......

I usually load the editor in a debugger once I know where the issue is. A useful hack is to duplicate the Rust function and rename it. Then you can...

Possibilities: - when `switch-windo--then` tries to run the hooks at the end - when the window list is retrieved?

re: Rust traces: `RUST_BACKTRACE=1` needs to be set in the environment. Configure with `--enable-rust-debug`. Add liberal asserts or panic! to the code.

On linux, learn to use https://rr-project.org/. It is super helpful. On OSX I find lldb to give better answers.