From owner-cvs-src-old@FreeBSD.ORG Sat Mar 6 17:01:42 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9A3AD106566B for ; Sat, 6 Mar 2010 17:01:42 +0000 (UTC) (envelope-from jilles@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 872C98FC16 for ; Sat, 6 Mar 2010 17:01:42 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id o26H1gbb010049 for ; Sat, 6 Mar 2010 17:01:42 GMT (envelope-from jilles@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o26H1gI9010048 for cvs-src-old@freebsd.org; Sat, 6 Mar 2010 17:01:42 GMT (envelope-from jilles@repoman.freebsd.org) Message-Id: <201003061701.o26H1gI9010048@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jilles@repoman.freebsd.org using -f From: Jilles Tjoelker Date: Sat, 6 Mar 2010 16:57:53 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/bin/sh eval.c exec.c exec.h sh.1 src/tools/regression/bin/sh/builtins command8.0 var-assign2.0 src/tools/regression/bin/sh/errors redirection-error3.0 X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 06 Mar 2010 17:01:42 -0000 jilles 2010-03-06 16:57:53 UTC FreeBSD src repository Modified files: bin/sh eval.c exec.c exec.h sh.1 Added files: tools/regression/bin/sh/builtins command8.0 var-assign2.0 tools/regression/bin/sh/errors redirection-error3.0 Log: SVN rev 204800 on 2010-03-06 16:57:53Z by jilles sh: Improve the command builtin: * avoid unnecessary fork * allow executing builtins via command * executing a special builtin via command removes its special properties Obtained from: NetBSD (parts) Revision Changes Path 1.76 +63 -32 src/bin/sh/eval.c 1.43 +17 -7 src/bin/sh/exec.c 1.20 +4 -0 src/bin/sh/exec.h 1.136 +6 -4 src/bin/sh/sh.1 1.1 +45 -0 src/tools/regression/bin/sh/builtins/command8.0 (new) 1.1 +55 -0 src/tools/regression/bin/sh/builtins/var-assign2.0 (new) 1.1 +54 -0 src/tools/regression/bin/sh/errors/redirection-error3.0 (new)