From owner-svn-src-all@FreeBSD.ORG Sat Nov 13 22:20:47 2010 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 448CF1065672; Sat, 13 Nov 2010 22:20:47 +0000 (UTC) (envelope-from jilles@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 32E9F8FC25; Sat, 13 Nov 2010 22:20:47 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id oADMKllw061808; Sat, 13 Nov 2010 22:20:47 GMT (envelope-from jilles@svn.freebsd.org) Received: (from jilles@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id oADMKlsP061806; Sat, 13 Nov 2010 22:20:47 GMT (envelope-from jilles@svn.freebsd.org) Message-Id: <201011132220.oADMKlsP061806@svn.freebsd.org> From: Jilles Tjoelker Date: Sat, 13 Nov 2010 22:20:47 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r215268 - head/bin/sh/funcs X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Nov 2010 22:20:47 -0000 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 }