Subject: NetBSD master CVS tree commits
To: None <source-changes@NetBSD.ORG>
From: The Source of All Evil <source@NetBSD.ORG>
List: source-changes
Date: 03/05/1996 16:10:05
christos
Tue Mar  5 16:04:08 EST 1996
Update of /a/cvsroot/src/bin/sh
In directory pain.lcs.mit.edu:/b/tmp/cvs-serv26501

Modified Files:
	eval.c parser.c 
Log Message:
- parser.c: Fix prompting in old style backquote expansion. Fixes PR/2139
	    and many user complaints why the shell hangs in echo "`"
- eval.c:   Fix exitstatus invalid resetting in `if' statements were:
		if (exit 3); then
			echo foo $?
		else
			echo bar $?
		fi
	    printed 'bar 0' instead of bar 3