From owner-cvs-bin Mon Aug 25 02:12:09 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id CAA00918 for cvs-bin-outgoing; Mon, 25 Aug 1997 02:12:09 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id CAA00835; Mon, 25 Aug 1997 02:11:40 -0700 (PDT) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id CAA11620; Mon, 25 Aug 1997 02:11:02 -0700 (PDT) Date: Mon, 25 Aug 1997 02:11:02 -0700 (PDT) Message-Id: <199708250911.CAA11620@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-bin@FreeBSD.ORG Subject: cvs commit: src/bin/sh Makefile alias.c arith.y arith_lex.l builtins.def cd.c error.c error.h eval.c eval.h exec.c exec.h expand.c histedit.c input.c input.h jobs.c jobs.h mail.c main.c memalloc.c miscbltin.c mkinit.c mknodes.c mksyntax.c myhistedit.h ... Sender: owner-cvs-bin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk jkh 1997/08/25 02:11:02 PDT Modified files: (Branch: RELENG_2_2) bin/sh Makefile alias.c arith.y arith_lex.l builtins.def cd.c error.c error.h eval.c eval.h exec.c exec.h expand.c histedit.c input.c input.h jobs.c jobs.h mail.c main.c memalloc.c miscbltin.c mkinit.c mknodes.c mksyntax.c myhistedit.h mystring.c nodes.c.pat options.c options.h output.c output.h parser.c parser.h redir.c redir.h sh.1 shell.h show.c show.h trap.c trap.h var.c var.h bin/sh/bltin bltin.h echo.c Log: MFC: Almost too much to mention. Lots of housecleaning merged over. Revision Changes Path 1.15.2.1 +33 -28 src/bin/sh/Makefile 1.4.2.1 +5 -5 src/bin/sh/alias.c 1.3.2.1 +7 -6 src/bin/sh/arith.y 1.5.2.1 +4 -3 src/bin/sh/arith_lex.l 1.3.2.1 +2 -1 src/bin/sh/builtins.def 1.6.2.1 +34 -185 src/bin/sh/cd.c 1.5.2.1 +62 -25 src/bin/sh/error.c 1.4.2.1 +3 -1 src/bin/sh/error.h 1.7.2.3 +44 -46 src/bin/sh/eval.c 1.3.2.1 +8 -1 src/bin/sh/eval.h 1.6.2.1 +101 -10 src/bin/sh/exec.c 1.3.2.1 +4 -2 src/bin/sh/exec.h 1.11.2.5 +83 -45 src/bin/sh/expand.c 1.6.2.1 +28 -18 src/bin/sh/histedit.c 1.6.2.1 +22 -17 src/bin/sh/input.c 1.3.2.1 +2 -2 src/bin/sh/input.h 1.8.2.3 +64 -33 src/bin/sh/jobs.c 1.3.2.1 +4 -4 src/bin/sh/jobs.h 1.3.2.1 +4 -4 src/bin/sh/mail.c 1.9.2.2 +40 -17 src/bin/sh/main.c 1.4.2.1 +9 -9 src/bin/sh/memalloc.c 1.8.2.1 +16 -18 src/bin/sh/miscbltin.c 1.6.2.1 +30 -32 src/bin/sh/mkinit.c 1.4.2.1 +10 -10 src/bin/sh/mknodes.c 1.6.2.1 +10 -8 src/bin/sh/mksyntax.c 1.3.2.1 +2 -2 src/bin/sh/myhistedit.h 1.4.2.1 +8 -8 src/bin/sh/mystring.c 1.3.2.1 +5 -5 src/bin/sh/nodes.c.pat 1.8.2.2 +115 -36 src/bin/sh/options.c 1.4.2.1 +9 -7 src/bin/sh/options.h 1.4.2.1 +17 -21 src/bin/sh/output.c 1.3.2.1 +3 -3 src/bin/sh/output.h 1.16.2.1 +92 -36 src/bin/sh/parser.c 1.3.2.1 +2 -2 src/bin/sh/parser.h 1.5.2.1 +37 -17 src/bin/sh/redir.c 1.3.2.1 +2 -2 src/bin/sh/redir.h 1.9.2.2 +557 -718 src/bin/sh/sh.1 1.6.2.1 +2 -4 src/bin/sh/shell.h 1.4.2.1 +11 -23 src/bin/sh/show.c 1.2.2.1 +5 -3 src/bin/sh/show.h 1.4.2.1 +115 -57 src/bin/sh/trap.c 1.3.2.1 +4 -4 src/bin/sh/trap.h 1.6.2.1 +80 -35 src/bin/sh/var.c 1.3.2.1 +28 -15 src/bin/sh/var.h 1.5.2.1 +6 -5 src/bin/sh/bltin/bltin.h 1.4.2.1 +4 -7 src/bin/sh/bltin/echo.c