Christopher Wellons
Christopher Wellons
Adam, would you be interested in taking ownership of this library? We can update the MELPA recipe to point to a new location. I'd like to just set mine as...
I have little idea how the systemd stuff works, and I haven't personally tested util/endless.service, so I can't say what would cause this error. There's a comment about binding privileged...
Glad to hear it's useful for someone in some capacity! I'm curious, what is your master thesis about? What makes my project relevant?
Looks like you've got some weird, broken version of the `echo` command. Maybe this is an OS X thing? It's not interpreting the `-n` as an argument to `echo` ("don't...
This is certainly not intentional. What might be happening is the subprocess is crashing and Emacs is hung up waiting for a response. If it's the C++ program stuck in...
That's a really good idea. I've run into similar subprocess issues on other Elisp projects and this approach would also help with those as well. The process' standard IO would...
Emacs Lisp hash tables are readable, so, in theory, the table could be printed to a file then read back in a different Emacs session. In order for this to...
@alphapapa, I added a third benchmark of a "simple" memoize wrapper and it's significantly faster. It's only about 5x slower than the custom solution and has one garbage collection. That's...
That's the backend either getting out of sync or simply crashing/hanging. The protocol is synchronous and Emacs blocks until it gets a response from the backend, so that's why you're...
Sure, this looks neat. Would you like to make a pull request with this change? If you can figure out a good way to test it via ERT — that...