eldev
eldev copied to clipboard
Two problems with eldev emacs --fg-daemon
Trying to run eldev emacs --fg-daemon
I notice two problems compared to running same emacs command without eldev.
-
Ctrl-c
will leave the emacs process running - The output is not relayed to STDOUT
It's a problem with Elisp, it doesn't really allow precise control over child processes. E.g. this is a trivial wrapper over cat
in shellscript:
#!/bin/sh
cat
echo done
It "parrots" all the text lines you enter and prints "done" at the end, if you terminate it with C-d
(i.e. make stdin
close). You can also abort it with C-c
. But I don't know if it is possible to reproduce this in Elisp anyhow, e.g. with emacs --batch --load some-script.el
. At least I didn't find any way when trying ideas from #25.
Fixed in Eldev 1.2.