From owner-cvs-src@FreeBSD.ORG Sun Nov 6 20:39:49 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2317B16A420; Sun, 6 Nov 2005 20:39:49 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D52C343D45; Sun, 6 Nov 2005 20:39:48 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id jA6Kdmwq014403; Sun, 6 Nov 2005 20:39:48 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jA6KdmFP014402; Sun, 6 Nov 2005 20:39:48 GMT (envelope-from stefanf) Message-Id: <200511062039.jA6KdmFP014402@repoman.freebsd.org> From: Stefan Farfeleder Date: Sun, 6 Nov 2005 20:39:48 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/bin/sh Makefile alias.c arith.h arith.y arith_lex.l eval.c exec.c exec.h expand.c histedit.c jobs.c mail.c memalloc.c memalloc.h miscbltin.c mkbuiltins mkinit.c mksyntax.c options.c parser.c sh.1 show.c trap.c var.c src/bin/sh/bltin ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Nov 2005 20:39:49 -0000 stefanf 2005-11-06 20:39:48 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) bin/sh Makefile alias.c arith.h arith.y arith_lex.l eval.c exec.c exec.h expand.c histedit.c jobs.c mail.c memalloc.c memalloc.h miscbltin.c mkbuiltins mkinit.c mksyntax.c options.c parser.c sh.1 show.c trap.c var.c bin/sh/bltin bltin.h Log: Sync with HEAD's code: - Support for command -v and -V. - Fixes for the errexit option. - A fix for a crash caused by SIGINT. - POSIX compliant set +o ouput. - A fix for unalias' exit code. - Man page updates. - Code cleanups, WARNS 3. Revision Changes Path 1.44.8.1 +1 -1 src/bin/sh/Makefile 1.18.8.1 +2 -2 src/bin/sh/alias.c 1.9.8.1 +3 -1 src/bin/sh/arith.h 1.19.8.1 +3 -3 src/bin/sh/arith.y 1.22.8.1 +3 -1 src/bin/sh/arith_lex.l 1.13.8.1 +2 -0 src/bin/sh/bltin/bltin.h 1.42.8.1 +32 -16 src/bin/sh/eval.c 1.25.2.1 +48 -13 src/bin/sh/exec.c 1.12.8.1 +7 -0 src/bin/sh/exec.h 1.47.2.1 +2 -4 src/bin/sh/expand.c 1.26.8.2 +1 -1 src/bin/sh/histedit.c 1.68.2.1 +2 -2 src/bin/sh/jobs.c 1.13.8.1 +1 -0 src/bin/sh/mail.c 1.26.8.1 +16 -2 src/bin/sh/memalloc.c 1.9.8.1 +1 -2 src/bin/sh/memalloc.h 1.30.8.1 +8 -8 src/bin/sh/miscbltin.c 1.14.2.1 +3 -3 src/bin/sh/mkbuiltins 1.17.8.1 +6 -5 src/bin/sh/mkinit.c 1.23.8.1 +4 -3 src/bin/sh/mksyntax.c 1.23.2.1 +8 -11 src/bin/sh/options.c 1.52.2.1 +11 -18 src/bin/sh/parser.c 1.102.2.1 +89 -17 src/bin/sh/sh.1 1.21.8.1 +0 -1 src/bin/sh/show.c 1.29.8.1 +1 -1 src/bin/sh/trap.c 1.27.2.1 +4 -2 src/bin/sh/var.c