From d79326ecc875fe7885e8b19012c3c1fcf8ad89d3 Mon Sep 17 00:00:00 2001
From: Jilles Tjoelker <jilles@FreeBSD.org>
Date: Sat, 13 Nov 2010 22:20:46 +0000
Subject: [PATCH] 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.
---
 bin/sh/funcs/suspend | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/sh/funcs/suspend b/bin/sh/funcs/suspend
index 81bb53d35edf..17492985b2ea 100644
--- a/bin/sh/funcs/suspend
+++ b/bin/sh/funcs/suspend
@@ -34,6 +34,6 @@
 
 suspend() {
 	local -
-	set +j
+	set +m
 	kill -TSTP 0
 }