# HG changeset patch # User Karoly Lorentey # Date 1121271350 0 # Node ID afade4ccd30c0cf727eba83671247353d1b5baf1 # Parent 4835a94a6cc57e8057b8d3da3754ebdaa033021d 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 diff -r 4835a94a6cc5 -r afade4ccd30c lib-src/emacsclient.c --- a/lib-src/emacsclient.c Tue Jul 12 11:09:18 2005 +0000 +++ b/lib-src/emacsclient.c Wed Jul 13 16:15:50 2005 +0000 @@ -378,6 +378,8 @@ /* We are in the background; cancel the continue. */ kill (getpid (), SIGSTOP); } + + signal (signalnum, handle_sigcont); errno = old_errno; }