svn commit: r215268 - head/bin/sh/funcs

Jilles Tjoelker jilles at FreeBSD.org
Sat Nov 13 22:20:47 UTC 2010


Author: jilles
Date: Sat Nov 13 22:20:46 2010
New Revision: 215268
URL: http://svn.freebsd.org/changeset/base/215268

Log:
  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.

Modified:
  head/bin/sh/funcs/suspend

Modified: head/bin/sh/funcs/suspend
==============================================================================
--- head/bin/sh/funcs/suspend	Sat Nov 13 22:18:12 2010	(r215267)
+++ head/bin/sh/funcs/suspend	Sat Nov 13 22:20:46 2010	(r215268)
@@ -34,6 +34,6 @@
 
 suspend() {
 	local -
-	set +j
+	set +m
 	kill -TSTP 0
 }


More information about the svn-src-all mailing list