summaryrefslogtreecommitdiff
path: root/editors/jed/files/patch-src_unix.c
diff options
context:
space:
mode:
authorRenato Botelho <garga@FreeBSD.org>2009-12-21 14:53:02 +0000
committerRenato Botelho <garga@FreeBSD.org>2009-12-21 14:53:02 +0000
commit65ba6801eb5b24ce94fd59adafa379d2d41a2ae6 (patch)
treedc505a8a90a45d2235675330667734201265d372 /editors/jed/files/patch-src_unix.c
parent- Update to 20091221 (diff)
After upgrade to 0.99.19 jed was freezing when called with -c, fix it now.
Reported by: andrew clarke <mail@ozzmosis.com> Obtained from: Author by email
Notes
Notes: svn path=/head/; revision=246368
Diffstat (limited to 'editors/jed/files/patch-src_unix.c')
-rw-r--r--editors/jed/files/patch-src_unix.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/editors/jed/files/patch-src_unix.c b/editors/jed/files/patch-src_unix.c
new file mode 100644
index 000000000000..c567e6d14229
--- /dev/null
+++ b/editors/jed/files/patch-src_unix.c
@@ -0,0 +1,24 @@
+--- src/unix.c
++++ src/unix.c
+@@ -211,8 +211,19 @@ static void set_process_group (void)
+ {
+ pid_t pid = getpid ();
+ Startup_PGID = getpgid (pid);
+- (void) tcsetpgrp (Read_FD, pid);
+- (void) setpgid (pid, pid);
++ if (-1 == tcsetpgrp (Read_FD, pid))
++ {
++ fprintf (stderr, "tcsetpgrp failed\n");
++ Terminal_PGID = -1;
++ return;
++ }
++ if (-1 == setpgid (pid, pid))
++ {
++ fprintf (stderr, "setpgid failed\n");
++ (void) tcsetpgrp (Read_FD, Startup_PGID);
++ Terminal_PGID = -1;
++ return;
++ }
+ }
+ #endif
+ }