1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-07 15:00:34 -08:00

Fix broken emacsclient resume on Solaris (by Dan Nicolaescu).

* lib-src/emacsclient.c (handle_sigcont): Reestablish signal handler. (Dan Nicolaescu)

git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-388
This commit is contained in:
Karoly Lorentey 2005-07-13 16:15:50 +00:00
parent f3d3467760
commit c6c53c3e65

View file

@ -378,6 +378,8 @@ handle_sigcont (int signalnum)
/* We are in the background; cancel the continue. */
kill (getpid (), SIGSTOP);
}
signal (signalnum, handle_sigcont);
errno = old_errno;
}