summaryrefslogtreecommitdiff
path: root/shells/esh/files/patch-ab
diff options
context:
space:
mode:
authorJacques Vidrine <nectar@FreeBSD.org>2002-02-06 22:40:05 +0000
committerJacques Vidrine <nectar@FreeBSD.org>2002-02-06 22:40:05 +0000
commit7a2c36bffc2c68a2d5e1288106d00d4a5ed0efb2 (patch)
treeef1c1e0308ced1ef6b75ec0b4639660ebf587389 /shells/esh/files/patch-ab
parentAdd ruby-ncurses, a Ruby interface to ncurses. (diff)
Update 0.8 -> 0.8.5.
Release MAINTAINER.
Notes
Notes: svn path=/head/; revision=54274
Diffstat (limited to 'shells/esh/files/patch-ab')
-rw-r--r--shells/esh/files/patch-ab18
1 files changed, 0 insertions, 18 deletions
diff --git a/shells/esh/files/patch-ab b/shells/esh/files/patch-ab
deleted file mode 100644
index 46e36903ba95..000000000000
--- a/shells/esh/files/patch-ab
+++ /dev/null
@@ -1,18 +0,0 @@
---- esh.c.orig Thu May 20 14:13:25 1999
-+++ esh.c Thu May 20 14:22:34 1999
-@@ -657,7 +656,9 @@
-
- void job_wait(job_t* job) {
- int tmp;
-+ sig_t oldsig;
-
-+ oldsig = signal(SIGCHLD, SIG_DFL);
- if (interactive) {
- waitpid(job->last_pid, &tmp, WUNTRACED);
-
-@@ -676,6 +677,7 @@
- } else {
- waitpid(job->last_pid, &tmp, WUNTRACED);
- }
-+ signal(SIGCHLD, oldsig);
- }