diff options
author | jilles <jilles@FreeBSD.org> | 2010-11-13 22:20:46 +0000 |
---|---|---|
committer | jilles <jilles@FreeBSD.org> | 2010-11-13 22:20:46 +0000 |
commit | 5ca0de0e3fa55d328c60f0ca6f6c0ae18108d0cb (patch) | |
tree | 4d468630917d814f3e2da9f5276d37b97dce0f6c /bin | |
parent | f9809fb86293b0c9bd995106b9dfea480d4262b0 (diff) | |
download | FreeBSD-src-5ca0de0e3fa55d328c60f0ca6f6c0ae18108d0cb.zip FreeBSD-src-5ca0de0e3fa55d328c60f0ca6f6c0ae18108d0cb.tar.gz |
sh: Update the suspend example for the change of the job control flag
from -j to -m, many years ago.
Due to r215266, this function now actually works.
Diffstat (limited to 'bin')
-rw-r--r-- | bin/sh/funcs/suspend | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/sh/funcs/suspend b/bin/sh/funcs/suspend index 81bb53d..1749298 100644 --- a/bin/sh/funcs/suspend +++ b/bin/sh/funcs/suspend @@ -34,6 +34,6 @@ suspend() { local - - set +j + set +m kill -TSTP 0 } |